Fixed memory leak in software YUV stretch code
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4010
This commit is contained in:
parent
5d94e3b158
commit
079731edb3
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue