mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
Fix a memory leak.
This commit is contained in:
parent
86d73f1577
commit
79a638198d
1 changed files with 1 additions and 0 deletions
|
@ -79,6 +79,7 @@ GIB_Function_Free (void *ele, void *ptr)
|
||||||
gib_function_t *func = (gib_function_t *)ele;
|
gib_function_t *func = (gib_function_t *)ele;
|
||||||
dstring_delete (func->name);
|
dstring_delete (func->name);
|
||||||
dstring_delete (func->program);
|
dstring_delete (func->program);
|
||||||
|
free (func);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue