[project @ 2004-03-20 22:15:40 by jmb]

Fix potential crash caused by <input type="button">

svn path=/import/netsurf/; revision=639
This commit is contained in:
John Mark Bell 2004-03-20 22:15:40 +00:00
parent cd6ce1339f
commit 19bb86e2ad
1 changed files with 3 additions and 0 deletions

View File

@ -1115,6 +1115,9 @@ struct result box_input(xmlNode *n, struct status *status,
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value"))) {
inline_box->text = s;
}
else {
inline_box->text = xstrdup("Button");
}
inline_box->length = strlen(inline_box->text);
inline_box->font = font_open(status->content->data.html.fonts, style);
box_add_child(inline_container, inline_box);