From 9fdf17c55f8a5828673566e620c4dc111c0ed23c Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 1 May 2024 10:24:51 +0200 Subject: Fix compilation with updated libplist API --- src/ideviceinstaller.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ideviceinstaller.c') diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index c50bacf..d6c10a8 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -1216,7 +1216,7 @@ run_again: size_t flen = 0; zbuf = buf_from_file(extmeta, &flen); if (zbuf && flen) { - meta = plist_new_data(zbuf, flen); + meta = plist_new_data((uint8_t*)zbuf, flen); plist_from_memory(zbuf, flen, &meta_dict, NULL); free(zbuf); } @@ -1231,7 +1231,7 @@ run_again: if (!meta && !meta_dict) { /* extract iTunesMetadata.plist from package */ if (zip_get_contents(zf, ITUNES_METADATA_PLIST_FILENAME, 0, &zbuf, &len) == 0) { - meta = plist_new_data(zbuf, len); + meta = plist_new_data((uint8_t*)zbuf, len); plist_from_memory(zbuf, len, &meta_dict, NULL); } if (!meta_dict) { @@ -1304,7 +1304,7 @@ run_again: size_t flen = 0; zbuf = buf_from_file(extsinf, &flen); if (zbuf && flen) { - sinf = plist_new_data(zbuf, flen); + sinf = plist_new_data((uint8_t*)zbuf, flen); free(zbuf); } else { fprintf(stderr, "WARNING: could not load external SINF %s!\n", extsinf); @@ -1324,7 +1324,7 @@ run_again: zbuf = NULL; len = 0; if (zip_get_contents(zf, sinfname, 0, &zbuf, &len) == 0) { - sinf = plist_new_data(zbuf, len); + sinf = plist_new_data((uint8_t*)zbuf, len); } else { fprintf(stderr, "WARNING: could not locate %s in archive!\n", sinfname); } -- cgit v1.1-32-gdbae