gtkhtml r9118 - branches/gnome-2-24/gtkhtml



Author: mcrha
Date: Thu Jan 29 10:25:09 2009
New Revision: 9118
URL: http://svn.gnome.org/viewvc/gtkhtml?rev=9118&view=rev

Log:
2009-01-29  Milan Crha  <mcrha redhat com>

	** Fix for bug #532165

	* htmlimage.c: (destroy), (update_or_redraw),
	(html_image_pointer_queue_animation),
	(html_image_pointer_load): Do not crash when factory gone.



Modified:
   branches/gnome-2-24/gtkhtml/ChangeLog
   branches/gnome-2-24/gtkhtml/htmlimage.c

Modified: branches/gnome-2-24/gtkhtml/htmlimage.c
==============================================================================
--- branches/gnome-2-24/gtkhtml/htmlimage.c	(original)
+++ branches/gnome-2-24/gtkhtml/htmlimage.c	Thu Jan 29 10:25:09 2009
@@ -149,8 +149,9 @@
 {
 	HTMLImage *image = HTML_IMAGE (o);
 
-	html_image_factory_unregister (image->image_ptr->factory,
-				       image->image_ptr, HTML_IMAGE (image));
+	if (image->image_ptr->factory)
+		html_image_factory_unregister (image->image_ptr->factory,
+					       image->image_ptr, HTML_IMAGE (image));
 
 	g_free (image->url);
 	g_free (image->target);
@@ -1060,6 +1061,10 @@
 	GSList *list;
 	gboolean update = FALSE;
 
+	/* do nothing when factory gone; maybe the message drawing has been cancelled */
+	if (!ip->factory)
+		return;
+
 	for (list = ip->interests; list; list = list->next) {
 		if (list->data == NULL)
 			update = TRUE;
@@ -1164,10 +1169,12 @@
 static gint
 html_image_pointer_update (HTMLImagePointer *ip)
 {
-	HTMLEngine *engine = ip->factory->engine;
+	HTMLEngine *engine;
 	GSList *cur;
 
 	g_return_val_if_fail (ip->factory != NULL, FALSE);
+
+	engine = ip->factory->engine;
 	ip->animation_timeout = 0;
 
 	DA (printf ("animation_timeout (%p)\n", ip);)
@@ -1400,7 +1407,7 @@
 static GtkHTMLStream *
 html_image_pointer_load (HTMLImagePointer *ip)
 {
-	if (ip->factory->engine->stopped)
+	if (!ip->factory || ip->factory->engine->stopped)
 		return NULL;
 
 	html_image_pointer_ref (ip);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]