Bug #2703: Fixed a memory leak in the fading code.

This commit is contained in:
Tilman Sauerbeck 2006-12-03 13:15:39 +01:00
parent d75fd64f7a
commit 6c539182a5
1 changed files with 1 additions and 1 deletions

View File

@ -1599,7 +1599,7 @@ finish_destroy_win (Display *dpy, Window id, Bool gone)
for (prev = &list; (w = *prev); prev = &w->next)
if (w->id == id)
{
if (!gone)
if (gone)
finish_unmap_win (dpy, w);
*prev = w->next;
if (w->picture)