diff options
| author | 2025-10-29 16:50:38 +0100 | |
|---|---|---|
| committer | 2025-10-29 16:50:38 +0100 | |
| commit | 438f01bad1437a15d35fa102bcde693171f03074 (patch) | |
| tree | c7bdc31815122f333b7527ed54a116f8a2fc5e78 | |
| parent | 613a76fb86294aa9ebff172932978c67b4d3cc3d (diff) | |
| download | libplist-438f01bad1437a15d35fa102bcde693171f03074.tar.gz libplist-438f01bad1437a15d35fa102bcde693171f03074.tar.bz2 | |
Thanks to @ylwango613 for reporting.
| -rw-r--r-- | tools/plistutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/plistutil.c b/tools/plistutil.c index b6b64d3..7e4eb67 100644 --- a/tools/plistutil.c +++ b/tools/plistutil.c @@ -196,8 +196,8 @@ int main(int argc, char *argv[]) plist_t root_node = NULL; char *plist_out = NULL; uint32_t size = 0; - int read_size = 0; - int read_capacity = 4096; + size_t read_size = 0; + size_t read_capacity = 4096; char *plist_entire = NULL; struct stat filestats; options_t *options = parse_arguments(argc, argv); |
