GNOME Bugzilla – Bug 575690
Crash on getobjectproperty, when both window and object arguments are same
Last modified: 2009-03-17 13:22:07 UTC
Crash on getobjectproperty, when both window and object arguments are same Steps to reproduce: In python prompt >>> from ldtp import * >>> getobjectproperty ('*-gedit', '*-gedit', 'children') Stack trace of crash
+ Trace 213548
Thread 1 (process 15217)
Patch fixes the crash 1443c1443 < if (!cctxt->app_map) { --- > if (cctxt && !cctxt->app_map) { 1446c1446 < if (accessible->handle != cctxt->app_handle) --- > if (accessible && cctxt && accessible->handle != cctxt->app_handle) Fixed in trunk.