Enlightenment CVS committal Author : kwo Project : e16 Module : e
Dir : e16/e/src Modified Files: alert.c Log Message: Fix potential segv. =================================================================== RCS file: /cvs/e/e16/e/src/alert.c,v retrieving revision 1.50 retrieving revision 1.51 diff -u -3 -r1.50 -r1.51 --- alert.c 19 Apr 2006 19:13:46 -0000 1.50 +++ alert.c 13 May 2006 09:46:22 -0000 1.51 @@ -154,6 +154,9 @@ return NULL; s = Emalloc(strlen(text) + 6); + if (!s) + return NULL; + sprintf(s, "(F%d) %s", btn, text); return s; ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs