Fix double free and under-dup in ShellAppMonitor
The hash table is keeping ownership of appid, we don't need to free it again. However we do need to re-dup it when we insert as a key.
This commit is contained in:
parent
09d9d91297
commit
8f0bf5deae
@ -347,12 +347,12 @@ shell_app_monitor_on_window_removed (MetaWorkspace *workspace,
|
||||
if (window_count == 0)
|
||||
{
|
||||
g_hash_table_remove (self->running_appids, appid);
|
||||
g_free (appid);
|
||||
g_signal_emit (self, signals[CHANGED], 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_hash_table_insert (self->running_appids, appid, GUINT_TO_POINTER (window_count));
|
||||
g_hash_table_insert (self->running_appids, g_strdup (appid),
|
||||
GUINT_TO_POINTER (window_count));
|
||||
}
|
||||
g_hash_table_remove (self->window_to_appid, window);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user