1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-03-31 17:25:40 -04:00

Fix memory leak in boxes.

Array elements where free'ed but not the array itself.
This commit is contained in:
Martijn Koedam 2013-01-22 18:44:47 +01:00
parent 6d0f4a96f8
commit 0084ba8707

View file

@ -725,6 +725,8 @@ int menu(char **lines, char **input, char *prompt, int selected, Time *time)
for (i = 0; i < max_lines; i++)
textbox_free(boxes[i]);
free(boxes);
free(filtered);
free(line_map);