wayland: Fixed freeing memory of SDL_malloc() with plain free().

This commit is contained in:
Philipp Wiesemann 2017-05-25 23:00:58 +02:00
parent c66f0471e1
commit 6c0aea4270
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ Wayland_VideoQuit(_THIS)
}
SDL_free(data->classname);
free(data);
SDL_free(data);
_this->driverdata = NULL;
}