|
From: <cap...@us...> - 2009-01-27 17:05:33
|
Revision: 533
http://enna.svn.sourceforge.net/enna/?rev=533&view=rev
Author: captainigloo
Date: 2009-01-27 17:05:30 +0000 (Tue, 27 Jan 2009)
Log Message:
-----------
Fix segv on exit (thanks Cedric :))
Modified Paths:
--------------
trunk/wall-e/src/bin/wall.c
Modified: trunk/wall-e/src/bin/wall.c
===================================================================
--- trunk/wall-e/src/bin/wall.c 2009-01-27 17:04:14 UTC (rev 532)
+++ trunk/wall-e/src/bin/wall.c 2009-01-27 17:05:30 UTC (rev 533)
@@ -77,6 +77,8 @@
priv = evas_object_smart_data_get(obj);
+ if (!priv) return;
+
evas_object_size_hint_min_get(priv->o_box, &minw, &minh);
evas_object_size_hint_max_get(priv->o_box, &maxw, &maxh);
evas_object_size_hint_min_set(obj, minw, minh);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|