Looks like it is triggered by some race condition when scanning a directory. I can reproduce by:
run gdb eog in a window in another window cd to a directory with images in subdirectories and run the following command: while true; do eog "$(find . -type d|sort -R |head -1|cut -f 1)"; done It opens a random subdir every iteration but crashes quite quickly. You can try adding a little sleep: while true; do eog "$(find . -type d|sort -R |head -1|cut -f 1)"; sleep 1; done At a guess, could it be that eog is scanning the subdir (building thumbnails or something) and has not yet opened the gdk window. Another eog instance then gets launched, and there is now an invalid window pointer? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/827958 Title: eog crashed with SIGSEGV in gdk_x11_window_get_xid() To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libgrip/+bug/827958/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
