mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-02 01:47:41 +00: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
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue