Enlightenment CVS committal

Author  : onefang
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_apps_error.c 


Log Message:
Fix an off by one error, thanks to blak.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_apps_error.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- e_apps_error.c      14 Aug 2006 15:22:44 -0000      1.17
+++ e_apps_error.c      3 Nov 2006 06:12:22 -0000       1.18
@@ -345,7 +345,7 @@
      {
        tlen = 0;
        for (i = 0; app->read->lines[i].line != NULL; i++)
-         tlen += app->read->lines[i].size + 1;
+         tlen += app->read->lines[i].size + 2;
        text = alloca(tlen + 1);
        if (text)
          {



-------------------------------------------------------------------------
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

Reply via email to