video: fix surface leak when duplicating mjpeg

(cherry picked from commit eb918af3dc)
This commit is contained in:
Green Sky
2025-03-28 21:02:13 +01:00
committed by Sam Lantinga
parent cec6073085
commit 7939309520

View File

@@ -1939,6 +1939,7 @@ SDL_Surface *SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelForm
if (!convert->pixels) {
goto error;
}
convert->flags &= ~SDL_SURFACE_PREALLOCATED;
convert->pitch = surface->pitch;
SDL_memcpy(convert->pixels, surface->pixels, size);