13 Jun
2024
13 Jun
'24
6:57 p.m.
Nikolay Sivov (@nsivov) commented about dlls/opcservices/compress.c:
free(archive); }
+static void *zalloc(void *opaque, unsigned int items, unsigned int size) +{ + return malloc(items * size); +} + +static void zfree(void *opaque, void *ptr) +{ + free(ptr); +}
These could be using zlib types I think, uInt and voidpf. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5845#note_73096