mirror of https://github.com/encounter/SDL.git
Pandora: Fixed memory leak in video implementation.
This commit is contained in:
parent
53ac57128b
commit
8d6cbdd235
|
@ -51,8 +51,10 @@ static void
|
|||
PND_destroy(SDL_VideoDevice * device)
|
||||
{
|
||||
if (device->driverdata != NULL) {
|
||||
SDL_free(device->driverdata);
|
||||
device->driverdata = NULL;
|
||||
}
|
||||
SDL_free(device);
|
||||
}
|
||||
|
||||
static SDL_VideoDevice *
|
||||
|
|
Loading…
Reference in New Issue