Fix memory bug (invalid free) introduced in 2007-04-02 strut cleanup
2007-04-07 Elijah Newren <newren gmail com> * src/window.c (meta_window_free): Fix memory bug (invalid free) introduced in 2007-04-02 strut cleanup commit. Part of #427385. svn path=/trunk/; revision=3173
This commit is contained in:
parent
8fe344db51
commit
745906b7db
@ -1,3 +1,8 @@
|
|||||||
|
2007-04-07 Elijah Newren <newren gmail com>
|
||||||
|
|
||||||
|
* src/window.c (meta_window_free): Fix memory bug (invalid free)
|
||||||
|
introduced in 2007-04-02 strut cleanup commit. Part of #427385.
|
||||||
|
|
||||||
2007-04-05 Thomas Thurman <thomas@thurman.org.uk>
|
2007-04-05 Thomas Thurman <thomas@thurman.org.uk>
|
||||||
|
|
||||||
* src/theme_parser.c: if theme is invalid and therefore got
|
* src/theme_parser.c: if theme is invalid and therefore got
|
||||||
|
@ -996,7 +996,7 @@ meta_window_free (MetaWindow *window,
|
|||||||
|
|
||||||
if (window->struts)
|
if (window->struts)
|
||||||
{
|
{
|
||||||
g_free (window->struts);
|
meta_free_gslist_and_elements (window->struts);
|
||||||
window->struts = NULL;
|
window->struts = NULL;
|
||||||
|
|
||||||
meta_topic (META_DEBUG_WORKAREA,
|
meta_topic (META_DEBUG_WORKAREA,
|
||||||
|
Loading…
Reference in New Issue
Block a user