Dammit raster, I'm trying to cut down the amount of over processing being

done on these strings.


SVN revision: 20029
This commit is contained in:
David Walter Seikel 2006-01-25 11:22:40 +00:00
parent 6114b14cb4
commit 4e7e5fa0cc
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ _e_app_error_dialog_scrolltext_create(Evas *evas, char *title, Ecore_Exe_Event_D
tlen = 0;
for (i = 0; lines[i].line != NULL; i++)
tlen += strlen(lines[i].line) + 1;
tlen += lines[i].size + 1;
text = alloca(tlen + 1);
if (text)
{