Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:16.0:FactoryCandidates
SDL_mixer
double-free-crash.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File double-free-crash.patch of Package SDL_mixer
# HG changeset patch # User Sam Lantinga <slouken@libsdl.org> # Date 1329087437 18000 # Node ID 2d713670db9b832b0c5aa700824900bc1fc3c3cd # Parent df72f22b4b411ad4b08f924329678aabd5ac97d6 # http://hg.libsdl.org/SDL_mixer/rev/2d713670db9b Fixed 1418 - crash on double free if loading WAV file failed diff -r df72f22b4b41 -r 2d713670db9b mixer.c --- a/mixer.c Mon Jan 30 21:41:45 2012 -0500 +++ b/mixer.c Sun Feb 12 17:57:17 2012 -0500 @@ -610,13 +610,15 @@ break; default: SDL_SetError("Unrecognized sound file type"); - return(0); + if ( freesrc ) { + SDL_RWclose(src); + } + loaded = NULL; + break; } if ( !loaded ) { + /* The individual loaders have closed src if needed */ SDL_free(chunk); - if ( freesrc ) { - SDL_RWclose(src); - } return(NULL); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor