mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
kmsdrm: do not leak drmModeConnector
Previously conn was leaked on the success path (when available was set to SDL_TRUE).
This commit is contained in:
parent
412b21b0e8
commit
c7eb557d89
@ -77,10 +77,12 @@ check_modesetting(int devindex)
|
||||
|
||||
if (conn->connection == DRM_MODE_CONNECTED && conn->count_modes) {
|
||||
available = SDL_TRUE;
|
||||
break;
|
||||
}
|
||||
|
||||
KMSDRM_drmModeFreeConnector(conn);
|
||||
if (available) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
KMSDRM_drmModeFreeResources(resources);
|
||||
|
Loading…
Reference in New Issue
Block a user