mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 07:52:57 -05:00
Fixed memory leak in software YUV stretch code
This commit is contained in:
parent
b82574e71f
commit
5b0b51aa33
|
|
@ -1299,6 +1299,9 @@ void SDL_FreeYUV_SW(_THIS, SDL_Overlay *overlay)
|
|||
|
||||
swdata = overlay->hwdata;
|
||||
if ( swdata ) {
|
||||
if ( swdata->stretch ) {
|
||||
SDL_FreeSurface(swdata->stretch);
|
||||
}
|
||||
if ( swdata->pixels ) {
|
||||
free(swdata->pixels);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user