Fix a think in the CSW input extension handling
This was causing stack overflow due to an obvious infinite recursion. See e.g. RH #548849.
This commit is contained in:
parent
1781696a4a
commit
d2ce67734a
@ -1754,7 +1754,7 @@ temporary_disable_extension_events (GdkWindowObject *window)
|
|||||||
child = l->data;
|
child = l->data;
|
||||||
|
|
||||||
if (window->impl_window == child->impl_window)
|
if (window->impl_window == child->impl_window)
|
||||||
res |= temporary_disable_extension_events (window);
|
res |= temporary_disable_extension_events (child);
|
||||||
}
|
}
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
|
Loading…
Reference in New Issue
Block a user