diff options
author | Nikias Bassen | 2023-04-21 16:51:26 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-04-21 16:51:26 +0200 |
commit | eda2c5ea71829f11d69342e6858d09aa53943938 (patch) | |
tree | 8bb010c65bb4a1f36cc032a2b40d7d27d414a21d /common | |
parent | 963083be85688206fe52042e8e32602d8139726e (diff) | |
download | libimobiledevice-eda2c5ea71829f11d69342e6858d09aa53943938.tar.gz libimobiledevice-eda2c5ea71829f11d69342e6858d09aa53943938.tar.bz2 |
Updated to use latest libplist API changes
Diffstat (limited to 'common')
-rw-r--r-- | common/userpref.c | 2 |
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 } *pair_record = NULL; - plist_from_memory(record_data, record_size, pair_record); + plist_from_memory(record_data, record_size, pair_record, NULL); free(record_data); if (!*pair_record) { |