diff options
Diffstat (limited to 'src/plist.c')
-rw-r--r-- | src/plist.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/plist.c b/src/plist.c index f33de0a..eeb4ffd 100644 --- a/src/plist.c +++ b/src/plist.c @@ -424,12 +424,7 @@ void plist_dict_set_item(plist_t node, const char* key, plist_t item) void plist_dict_insert_item(plist_t node, const char* key, plist_t item) { - if (node && PLIST_DICT == plist_get_node_type(node)) - { - node_attach(node, plist_new_key(key)); - node_attach(node, item); - } - return; + plist_dict_set_item(node, key, item); } void plist_dict_remove_item(plist_t node, const char* key) |