1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 01:21:10 +00:00

Fix libchdr warning ()

This commit is contained in:
sonninnos 2022-11-22 15:44:56 +02:00 committed by GitHub
parent 3e661ea42e
commit aeaf5561bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -174,9 +174,9 @@ chd_error zlib_codec_init(void *codec, uint32_t hunkbytes)
else else
err = CHDERR_NONE; err = CHDERR_NONE;
/* handle an error */ /* handle an error */
if (err != CHDERR_NONE) if (err != CHDERR_NONE)
free(data); zlib_codec_free(data);
return err; return err;
} }
@ -194,7 +194,7 @@ void zlib_codec_free(void *codec)
if (data != NULL) if (data != NULL)
{ {
int i; int i;
zlib_allocator alloc; zlib_allocator alloc;
inflateEnd(&data->inflater); inflateEnd(&data->inflater);
@ -229,7 +229,7 @@ chd_error zlib_codec_decompress(void *codec, const uint8_t *src, uint32_t comple
/* do it */ /* do it */
zerr = inflate(&data->inflater, Z_FINISH); zerr = inflate(&data->inflater, Z_FINISH);
(void)zerr; (void)zerr;
if (data->inflater.total_out != destlen) if (data->inflater.total_out != destlen)
return CHDERR_DECOMPRESSION_ERROR; return CHDERR_DECOMPRESSION_ERROR;
@ -270,7 +270,7 @@ voidpf zlib_fast_alloc(voidpf opaque, uInt items, uInt size)
} }
/* alloc a new one */ /* alloc a new one */
ptr = (UINT32 *)malloc(size + sizeof(UINT32) + ZLIB_MIN_ALIGNMENT_BYTES); ptr = (UINT32 *)malloc(size + sizeof(UINT32) + ZLIB_MIN_ALIGNMENT_BYTES);
if (!ptr) if (!ptr)
return NULL; return NULL;