summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plist.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c
index 29dbfb7..6d7a07f 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -1067,6 +1067,11 @@ static void plist_set_element_val(plist_t node, plist_type type, const void *val
1067 1067
1068PLIST_API void plist_set_key_val(plist_t node, const char *val) 1068PLIST_API void plist_set_key_val(plist_t node, const char *val)
1069{ 1069{
1070 plist_t father = plist_get_parent(node);
1071 plist_t item = plist_dict_get_item(father, val);
1072 if (item) {
1073 return;
1074 }
1070 plist_set_element_val(node, PLIST_KEY, val, strlen(val)); 1075 plist_set_element_val(node, PLIST_KEY, val, strlen(val));
1071} 1076}
1072 1077