mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
some lists failed to keep track of their contents and therefore didn't
* src/core/edge-resistance.c: some lists failed to keep track of their contents and therefore didn't free correctly. Closes #552303. svn path=/trunk/; revision=4095
This commit is contained in:
@ -985,8 +985,8 @@ meta_display_compute_resistance_and_snapping_edges (MetaDisplay *display)
|
||||
cur_window_iter = cur_window_iter->next;
|
||||
}
|
||||
/* Put 'em in bottom to top order */
|
||||
rem_windows = g_slist_reverse (obscuring_windows);
|
||||
rem_win_stacking = g_slist_reverse (window_stacking);
|
||||
rem_windows = obscuring_windows = g_slist_reverse (obscuring_windows);
|
||||
rem_win_stacking = window_stacking = g_slist_reverse (window_stacking);
|
||||
|
||||
/*
|
||||
* 3rd: loop over the windows again, this time getting the edges from
|
||||
|
Reference in New Issue
Block a user