mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-09 19:36:29 +00:00
Fix false compiler warning: initialize the variable 'memdiff'
This commit is contained in:
@@ -968,7 +968,7 @@ SDL_SIMDRealloc(void *mem, const size_t len)
|
||||
const size_t padded = (padding != alignment) ? (len + padding) : len;
|
||||
Uint8 *retval = (Uint8*) mem;
|
||||
void *oldmem = mem;
|
||||
size_t memdiff, ptrdiff;
|
||||
size_t memdiff = 0, ptrdiff;
|
||||
Uint8 *ptr;
|
||||
|
||||
if (mem) {
|
||||
|
Reference in New Issue
Block a user