forked from AuroraMiddleware/gtk
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
58f7b084b5
commit
afbc052916
@ -1754,7 +1754,7 @@ temporary_disable_extension_events (GdkWindowObject *window)
|
||||
child = l->data;
|
||||
|
||||
if (window->impl_window == child->impl_window)
|
||||
res |= temporary_disable_extension_events (window);
|
||||
res |= temporary_disable_extension_events (child);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
Loading…
Reference in New Issue
Block a user