Fix memory leak

This commit is contained in:
Dave Davenport 2016-07-16 22:36:20 +02:00
parent e9c3b930bc
commit 85d95c4f8f
1 changed files with 1 additions and 1 deletions

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 );
}
}