diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-26 06:53:07 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-26 06:53:07 +0000 |
commit | 9e92525fd977777a3bf86e56def5fcecf1d36b8e (patch) | |
tree | 31e2bc053ed200d0c9be3d9ffc5a70538252d3a8 /x11-toolkits/gal2/files | |
parent | Fix typo: s/May useful scripts/Many useful scripts/. (diff) |
Fix a potential crash in Evolution when closing a window.
Diffstat (limited to 'x11-toolkits/gal2/files')
-rw-r--r-- | x11-toolkits/gal2/files/patch-gal_widgets_e-canvas.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-toolkits/gal2/files/patch-gal_widgets_e-canvas.c b/x11-toolkits/gal2/files/patch-gal_widgets_e-canvas.c new file mode 100644 index 000000000000..10dc71d4cb9f --- /dev/null +++ b/x11-toolkits/gal2/files/patch-gal_widgets_e-canvas.c @@ -0,0 +1,11 @@ +--- gal/widgets/e-canvas.c.orig Tue May 24 01:16:33 2005 ++++ gal/widgets/e-canvas.c Tue May 24 01:16:51 2005 +@@ -1015,7 +1015,7 @@ void e_canvas_popup_tooltip (ECanvas *ca + + void e_canvas_hide_tooltip (ECanvas *canvas) + { +- if (canvas->tooltip_window) { ++ if (canvas && canvas->tooltip_window) { + gtk_widget_destroy (canvas->tooltip_window); + canvas->tooltip_window = NULL; + } |