mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
Fixed signed/unsigned comparison warning
This commit is contained in:
@@ -784,8 +784,8 @@ static int dynamic_mem_realloc(IOStreamDynamicMemData *iodata, size_t size)
|
||||
static size_t SDLCALL dynamic_mem_write(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status)
|
||||
{
|
||||
IOStreamDynamicMemData *iodata = (IOStreamDynamicMemData *) userdata;
|
||||
if (size > (iodata->data.stop - iodata->data.here)) {
|
||||
if (size > (iodata->end - iodata->data.here)) {
|
||||
if (size > (size_t)(iodata->data.stop - iodata->data.here)) {
|
||||
if (size > (size_t)(iodata->end - iodata->data.here)) {
|
||||
if (dynamic_mem_realloc(iodata, size) < 0) {
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user