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:
parent
6d0f4a96f8
commit
0084ba8707
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue