mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-27 10:46:21 +00:00
Use correct free function.
Fixes: 75d76638 ("Free wins summary list")
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
This commit is contained in:
@@ -484,7 +484,7 @@ cons_show_wins(gboolean unread)
|
|||||||
}
|
}
|
||||||
curr = g_slist_next(curr);
|
curr = g_slist_next(curr);
|
||||||
}
|
}
|
||||||
g_slist_free_full(window_strings, free);
|
g_slist_free_full(window_strings, g_free);
|
||||||
|
|
||||||
cons_alert(NULL);
|
cons_alert(NULL);
|
||||||
}
|
}
|
||||||
@@ -505,7 +505,7 @@ cons_show_wins_attention()
|
|||||||
}
|
}
|
||||||
curr = g_slist_next(curr);
|
curr = g_slist_next(curr);
|
||||||
}
|
}
|
||||||
g_slist_free_full(window_strings, free);
|
g_slist_free_full(window_strings, g_free);
|
||||||
|
|
||||||
cons_alert(NULL);
|
cons_alert(NULL);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user