summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xplist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xplist.c b/src/xplist.c
index 022f1cd..f896030 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -1221,7 +1221,7 @@ static void node_from_xml(parse_ctx ctx, plist_t *plist)
1221 if (!keyname) { 1221 if (!keyname) {
1222 PLIST_XML_ERR("missing key name while adding dict item\n"); 1222 PLIST_XML_ERR("missing key name while adding dict item\n");
1223 ctx->err++; 1223 ctx->err++;
1224 break; 1224 goto err_out;
1225 } 1225 }
1226 plist_dict_set_item(parent, keyname, subnode); 1226 plist_dict_set_item(parent, keyname, subnode);
1227 break; 1227 break;
@@ -1232,7 +1232,7 @@ static void node_from_xml(parse_ctx ctx, plist_t *plist)
1232 /* should not happen */ 1232 /* should not happen */
1233 PLIST_XML_ERR("parent is not a structered node\n"); 1233 PLIST_XML_ERR("parent is not a structered node\n");
1234 ctx->err++; 1234 ctx->err++;
1235 break; 1235 goto err_out;
1236 } 1236 }
1237 } 1237 }
1238 if (!is_empty && (data->type == PLIST_DICT || data->type == PLIST_ARRAY)) { 1238 if (!is_empty && (data->type == PLIST_DICT || data->type == PLIST_ARRAY)) {