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:
Matthias Clasen 2009-12-21 15:27:46 -05:00 committed by Tristan Van Berkom
parent 58f7b084b5
commit afbc052916

View File

@ -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;