From 9cef53d627d3d9d50f631f3bb9ddb0de84d65fde Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Wed, 11 Sep 2013 19:14:43 +0900 Subject: [PATCH] Check the length of content string. If it has ZERO length, use the default content info if it exists. Change-Id: I14eeb9a991cc5f2e4d5b8bfa572fdd3f587c078f --- src/livebox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/livebox.c b/src/livebox.c index 0b5ddcd..fe23d5c 100644 --- a/src/livebox.c +++ b/src/livebox.c @@ -737,7 +737,7 @@ EAPI struct livebox *livebox_add_with_size(const char *pkgname, const char *cont return NULL; } - if (content) { + if (content && strlen(content)) { handler->content = strdup(content); if (!handler->content) { ErrPrint("Error: %s\n", strerror(errno)); -- 2.7.4