summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/xplist.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xplist.c b/src/xplist.c
index f5ddddd..0e9b007 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -1103,8 +1103,10 @@ static void node_from_xml(parse_ctx ctx, plist_t *plist, uint32_t depth)
goto err_out;
}
size_t size = tp->length;
- data->buff = base64decode(str_content, &size);
- data->length = size;
+ if (size > 0) {
+ data->buff = base64decode(str_content, &size);
+ data->length = size;
+ }
if (requires_free) {
free(str_content);