make ImgIoUtilReadFile use WebPMalloc instead of malloc

This is a minor technical change in API in case a special allocator
was used in WebPMalloc.

Change-Id: Idb78a9150d006f158c1a9538525097749e42e7f7
This commit is contained in:
Pascal Massimino
2020-10-16 15:37:26 +02:00
committed by Skal
parent 8cb7e536d2
commit 906c1fcd61
6 changed files with 8 additions and 8 deletions

View File

@ -94,7 +94,7 @@ static int ReadPicture(const char* const filename, WebPPicture* const pic,
WFPRINTF(stderr, "Error! Could not process file %s\n",
(const W_CHAR*)filename);
}
free((void*)data);
WebPFree((void*)data);
return ok;
}
@ -121,7 +121,7 @@ static int ReadPicture(const char* const filename, WebPPicture* const pic,
WFPRINTF(stderr, "Error! Could not process file %s\n",
(const W_CHAR*)filename);
}
free((void*)data);
WebPFree((void*)data);
return ok;
}