mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
[client] Free default input config plist
Yet another memory leak.
This commit is contained in:
parent
4defba8251
commit
ccb56c93e6
1 changed files with 3 additions and 1 deletions
|
@ -456,7 +456,9 @@ CL_Legacy_Init (void)
|
|||
OK_Init ();
|
||||
Cmd_AddCommand ("bind", cl_bind_f, "compatibility wrapper for in_bind");
|
||||
Cmd_AddCommand ("unbind", cl_unbind_f, "compatibility wrapper for in_bind");
|
||||
IN_LoadConfig (PL_GetPropertyList (default_input_config, 0));
|
||||
plitem_t *cfg = PL_GetPropertyList (default_input_config, 0);
|
||||
IN_LoadConfig (cfg);
|
||||
PL_Free (cfg);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue