Hi, I send new patch for last patch (add null checking routine in ecore_evas_buffer). This patch includes CRIT message for app makers know about their mistakes.
ecore_evas_buffer_pixels_get(Ecore_Evas *ee)
{
#ifdef BUILD_ECORE_EVAS_SOFTWARE_BUFFER
+
+ if (!ee)
+ {
+ CRIT("Ecore_Evas is missing");
+ return NULL;
+ }
+
_ecore_evas_buffer_render(ee);
return ee->engine.buffer.pixels;
#else
Thanks.
Sincerely,
Sungho Kwak
ecore_evas_buffer.diff
Description: Binary data
------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
