1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-03 15:34:54 -05:00

Fix memory leak

This commit is contained in:
Dave Davenport 2016-07-16 22:36:20 +02:00
parent e9c3b930bc
commit 85d95c4f8f

View file

@ -617,8 +617,8 @@ static void window_mode_destroy ( Mode *sw )
winlist_free ( rmpd->ids );
x11_cache_free ();
g_free ( rmpd->cache );
g_free ( rmpd );
g_regex_unref ( rmpd->window_regex );
g_free ( rmpd );
mode_set_private_data ( sw, NULL );
}
}