diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xplist.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/xplist.c b/src/xplist.c index 739b5ab..d905b92 100644 --- a/src/xplist.c +++ b/src/xplist.c @@ -355,7 +355,7 @@ static void node_to_xml(node_t* node, bytearray_t **outbuf, uint32_t depth)          str_buf_append(*outbuf, "\n", 1);      if (isStruct) { -        if (node_data->type == PLIST_DICT) { +        if (node_data->type == PLIST_DICT && node->children) {              assert((node->children->count % 2) == 0);          }          node_t *ch; | 
