[project @ 2003-10-25 21:50:49 by bursa]

Textarea loading fix.

svn path=/import/netsurf/; revision=385
This commit is contained in:
James Bursa 2003-10-25 21:50:49 +00:00
parent 43145ba6e4
commit ee31317480
1 changed files with 1 additions and 1 deletions

View File

@ -806,7 +806,7 @@ struct result box_textarea(xmlNode *n, struct status *status,
current += len;
if (current[0] == '\r' && current[1] == '\n')
current += 2;
else if (current[0] == '\n')
else if (current[0] != 0)
current++;
} while (*current);
xmlFree(content);