From 5a48f8e69a3a9d179c56661b6528e4f7fbb4e941 Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Wed, 11 Sep 2013 19:15:55 +0900 Subject: [PATCH 1/1] Check the length of content string. If it is zero length string, use the default content if exists. Change-Id: Ib122bfb0ce82d9ebb25a94aa81580550f9923053 --- 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