evas: fix wrong call to free when using mempool for Evas_Object.
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 18 Mar 2011 10:56:27 +0000 (10:56 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 18 Mar 2011 10:56:27 +0000 (10:56 +0000)
Patch by Jiyoun Park <jy0703.park@samsung.com>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@57846 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

AUTHORS
ChangeLog
src/lib/canvas/evas_object_line.c

diff --git a/AUTHORS b/AUTHORS
index 7e1bfad..75b5960 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -18,6 +18,7 @@ Tom Hacohen <tom@stosb.com>
 Mathieu Taillefumier <mathieu.taillefumier@free.fr>
 Iván Briano <ivan@profusion.mobi>
 Gustavo Lima Chaves <glima@profusion.mobi>
-Saumsung Electronics <tbd>
+Samsung Electronics <tbd>
 Samsung SAIT <tbd>
 Sung W. Park <sungwoo@gmail.com>
+Jiyoun Park <jy0703.park@samsung.com>
index 1bb1990..37b78b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 2011-03-15  Cedric BAIL
 
        * Fix issues with clipping and map.
+
+2011-03-18  Jiyoun Park
+
+       * Fix wrong call to free when using mempool for Evas_Object.
index 0baab9e..f835aee 100644 (file)
@@ -280,7 +280,7 @@ evas_object_line_free(Evas_Object *obj)
    MAGIC_CHECK_END();
    /* free obj */
    o->magic = 0;
-   free(o);
+   EVAS_MEMPOOL_FREE(_mp_obj, o);
 }
 
 static void