From 5359dcf36f4ab496b5c7fd724bbe37fba3672f37 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 11 Dec 2012 12:47:50 -0600 Subject: [PATCH] Work around Bug 1161 (cherry picked from commit 1c14fecac3903921cef9e63e01deb4228bd4d51d) --- kdeui/ksharedpixmap.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kdeui/ksharedpixmap.cpp b/kdeui/ksharedpixmap.cpp index 29c670265..9cd98fd8a 100644 --- a/kdeui/ksharedpixmap.cpp +++ b/kdeui/ksharedpixmap.cpp @@ -162,6 +162,13 @@ bool KSharedPixmap::x11Event(XEvent *event) Status status = XGetGeometry(qt_xdisplay(), pixmap, &root, &dummy, &dummy, &width, &height, &udummy, &udummy); + // HACK + // XGetGeometry can return bogus values on some systems, leading to a SIGFPE + // See http://bugs.trinitydesktop.org/show_bug.cgi?id=1161 for details + // Work around that here... + if ((width < 1) || (height < 1)) + return false; + if (status == BadDrawable) return false;