summaryrefslogtreecommitdiffstats
path: root/common/userpref.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-04-21 16:51:26 +0200
committerGravatar Nikias Bassen2023-04-21 16:51:26 +0200
commiteda2c5ea71829f11d69342e6858d09aa53943938 (patch)
tree8bb010c65bb4a1f36cc032a2b40d7d27d414a21d /common/userpref.c
parent963083be85688206fe52042e8e32602d8139726e (diff)
downloadlibimobiledevice-eda2c5ea71829f11d69342e6858d09aa53943938.tar.gz
libimobiledevice-eda2c5ea71829f11d69342e6858d09aa53943938.tar.bz2
Updated to use latest libplist API changes
Diffstat (limited to 'common/userpref.c')
-rw-r--r--common/userpref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/userpref.c b/common/userpref.c
index ddd380a..11e28ba 100644
--- a/common/userpref.c
+++ b/common/userpref.c
@@ -338,7 +338,7 @@ userpref_error_t userpref_read_pair_record(const char *udid, plist_t *pair_recor
338 } 338 }
339 339
340 *pair_record = NULL; 340 *pair_record = NULL;
341 plist_from_memory(record_data, record_size, pair_record); 341 plist_from_memory(record_data, record_size, pair_record, NULL);
342 free(record_data); 342 free(record_data);
343 343
344 if (!*pair_record) { 344 if (!*pair_record) {