video: fix surface leak when duplicating mjpeg

This commit is contained in:
Green Sky
2025-03-28 21:02:13 +01:00
committed by Sam Lantinga
parent 567dfd2ebc
commit eb918af3dc

View File

@@ -1948,6 +1948,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);