+2013-03-05 Jiyoun Park (Jypar)
+
+ * Ecore_x: Fix dangling pointer problem related with shmget fail
+
2013-03-04 Sung W. Park (sung_)
* Evas Evas_GL: removed resource surface/context pool in favor of
* Evas cache: remove the freed worker from the pthread worker list when it's failed to create a new thread so as not to access it if a thread is working newly.
* fix custom states for edje SPACER parts
* fix edje program filters
+ * fix dangling pointer problem related with shmget fail
if (im->shminfo.shmid == -1)
{
XDestroyImage(im->xim);
+ im->xim = NULL;
return;
}
shmdt(im->shminfo.shmaddr);
shmctl(im->shminfo.shmid, IPC_RMID, 0);
XDestroyImage(im->xim);
+ im->xim = NULL;
return;
}