Hi,
== e_fm_op.c l.984 ==
if dst = NULL, strlen() sefaults.
Here is a patch.
--- e_fm_op.c Sat Sep 22 13:31:24 2012
+++ e_fm_op.c Sat Sep 22 13:31:19 2012
@@ -980,6 +980,8 @@
int size, src_len, dst_len;
int ret = 0;
+ if (!dst) return;
+
src_len = strlen(src);
dst_len = strlen(dst);
------------------------------------------------------------------------------
How fast is your code?
3 out of 4 devs don\\\'t know how their code performs in production.
Find out how slow your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219672;13503038;z?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel