Fixed bug 4837 - Use after free in SDL_SensorUpdate (Thanks!)

Sylvain Becker 2019-10-23 08:46:59 +02:00
parent 5025109f29
commit 3ac67cf458
1 changed files with 3 additions and 2 deletions

View File

@ -503,7 +503,7 @@ void
SDL_SensorUpdate(void)
{
int i;
SDL_Sensor *sensor;
SDL_Sensor *sensor, *next;
if (!SDL_WasInit(SDL_INIT_SENSOR)) {
return;
@ -531,7 +531,8 @@ SDL_SensorUpdate(void)
SDL_updating_sensor = SDL_FALSE;
/* If any sensors were closed while updating, free them here */
for (sensor = SDL_sensors; sensor; sensor = sensor->next) {
for (sensor = SDL_sensors; sensor; sensor = next) {
next = sensor->next;
if (sensor->ref_count <= 0) {
SDL_SensorClose(sensor);
}