From 8238bdb59ff99deedec4da7daf6dfa54366dfcac Mon Sep 17 00:00:00 2001 From: Aaron Burghardt Date: Wed, 4 Dec 2013 18:30:23 -0500 Subject: userpref.c: removed excessive plist_free of a plist dict item. --- common/userpref.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/userpref.c b/common/userpref.c index c76fca5..cd8b229 100644 --- a/common/userpref.c +++ b/common/userpref.c @@ -327,7 +327,6 @@ static int internal_get_value(const char* config_file, const char *key, plist_t plist_t n = plist_dict_get_item(config, key); if (n) { *value = plist_copy(n); - plist_free(n); n = NULL; } } -- cgit v1.1-32-gdbae