GNOME Bugzilla – Bug 785232
Segmentation fault
Last modified: 2017-07-22 07:16:04 UTC
Created attachment 356119 [details] backtrace I've got a small python / opencv program that opens a window with an image for me to do some processing on it, and then it goes to the next image by closing the window and opening a new one immediately. After doing that a few times (randomly between 10 and 100 times) gnome-shell crashes with the attached backtrace, always. Configuration: Wayland, HiDPI, Gnome 3.24, arch 64 bits (up to date).
To reproduce the issue, run this code while True: cv2.startWindowThread() image = cv2.imread("image.tif") windowName = "Color" cv2.namedWindow(windowName, cv2.WINDOW_NORMAL) cv2.resizeWindow(windowName, 600,600) cv2.imshow(windowName, image) time.sleep(0.1) cv2.destroyAllWindows()
Thanks so much! This is a duplicate, but hopefully this script will help reproduce the issue more easily. *** This bug has been marked as a duplicate of bug 783935 ***
Created attachment 356159 [details] crash test This scrip makes gnome-shell crash in less than 1 min both on wayland and X11 on my laptop