X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fdesc_parser.c;h=d0fa14c3edaf168758bf801a7351877584dd2670;hb=aaede55f33454393011ec1e0979ec0f8849f7e13;hp=b5abe7deedf701fe3b9a24ea9d24653d548ffbc0;hpb=b83dd6b9f768e2f41dcc6cb9597e19373fe5f171;p=platform%2Fframework%2Fweb%2Flivebox-viewer.git diff --git a/src/desc_parser.c b/src/desc_parser.c index b5abe7d..d0fa14c 100644 --- a/src/desc_parser.c +++ b/src/desc_parser.c @@ -22,6 +22,7 @@ #include #include +#include #include "debug.h" #include "livebox.h" @@ -29,7 +30,6 @@ #include "desc_parser.h" #include "dlist.h" #include "util.h" -#include "critical_log.h" #define TYPE_TEXT "text" #define TYPE_IMAGE "image" @@ -360,7 +360,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block = calloc(1, sizeof(*block)); if (!block) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); update_end(handle, is_pd); if (fclose(fp) != 0) { ErrPrint("fclose: %s\n", strerror(errno)); @@ -482,7 +482,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->type_len += 256; block->type = realloc(block->type, block->type_len); if (!block->type) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } } @@ -504,7 +504,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->part_len += 256; block->part = realloc(block->part, block->part_len); if (!block->part) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } } @@ -526,7 +526,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->data_len += 256; block->data = realloc(block->data, block->data_len); if (!block->data) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } } @@ -548,7 +548,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->file_len += 256; block->file = realloc(block->file, block->file_len); if (!block->file) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } } @@ -570,7 +570,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->option_len += 256; block->option = realloc(block->option, block->option_len); if (!block->option) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } } @@ -591,7 +591,7 @@ int parse_desc(struct livebox *handle, const char *descfile, int is_pd) block->id_len += 256; block->id = realloc(block->id, block->id_len); if (!block->id) { - CRITICAL_LOG("Heap: %s\n", strerror(errno)); + ErrPrint("Heap: %s\n", strerror(errno)); goto errout; } }