wayland: Free the scaled cursor surface if SHM allocation fails

This commit is contained in:
Frank Praznik 2024-08-06 11:13:58 -04:00
parent 57fa3bc08e
commit 10abe1a75b
No known key found for this signature in database

View File

@ -466,8 +466,8 @@ static Wayland_CachedCustomCursor *Wayland_GetCachedCustomCursor(SDL_Cursor *cur
/* Allocate shared memory buffer for this cursor */
if (Wayland_AllocSHMBuffer(surface->w, surface->h, &cache->shmBuffer) != 0) {
SDL_free(cursor->internal);
SDL_free(cursor);
SDL_free(cache);
SDL_DestroySurface(surface);
return NULL;
}