compositor: get rid of a leak in window_actually_close

The function call allocates on the heap, so this would cause a leak.
This commit is contained in:
Lioncash 2015-04-10 19:21:25 -04:00
parent f33f723735
commit 99c907bf95

View File

@ -1242,7 +1242,6 @@ static void window_actually_close(yutani_globals_t * yg, yutani_server_window_t
}
/* Notify subscribers that there are changes to windows */
yutani_msg_t * response = yutani_msg_build_notify();
notify_subscribers(yg);
}