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 4baafc70a6
commit ccb23bd165

View File

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