summaryrefslogtreecommitdiff
path: root/editors/abiword/patches/patch-plugins_gimp_xp_AbiGimp.cpp
blob: a6fa799c1f5a4511f2748fd7ac0b0ed948c221c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-plugins_gimp_xp_AbiGimp.cpp,v 1.1 2015/09/13 21:32:13 nros Exp $
* Fix seg fault.
--- plugins/gimp/xp/AbiGimp.cpp.orig	2013-12-23 02:37:58.000000000 +0000
+++ plugins/gimp/xp/AbiGimp.cpp
@@ -249,6 +249,10 @@ AbiGimp_invoke(AV_View* /*v*/, EV_EditMe
 {
     // Get the current view that the user is in.
     XAP_Frame *pFrame = XAP_App::getApp()->getLastFocussedFrame();
+    if (pFrame == NULL) {
+      UT_DEBUGMSG(("Gimp plugin: getLastFocussedFrame() returned NULL\n"));
+      return false;
+    }
     FV_View* pView = static_cast<FV_View*>(pFrame->getCurrentView());
 
 //