[project @ 2003-10-25 21:50:49 by bursa]
Textarea loading fix. svn path=/import/netsurf/; revision=385
This commit is contained in:
parent
43145ba6e4
commit
ee31317480
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue