mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
chilren was being freed twice - what a dumbass error.
Thanks to Matti Aarnio <matti.aarnio@sonera.fi> for pointing this out.
This commit is contained in:
parent
c56800ee15
commit
f10b268d52
@ -152,13 +152,10 @@ XfeShellGetDecorationOffset(Widget shell,
|
||||
if (children)
|
||||
{
|
||||
XFree(children);
|
||||
|
||||
children = NULL;
|
||||
}
|
||||
|
||||
if (children)
|
||||
{
|
||||
XFree(children);
|
||||
}
|
||||
|
||||
if (parent != None)
|
||||
{
|
||||
int px;
|
||||
|
Loading…
Reference in New Issue
Block a user