Fix handling of form elements without a <form>.

This commit is contained in:
Michael Drake 2012-08-07 10:53:40 +01:00
parent 6205c62ba3
commit 6d585308f8
1 changed files with 0 additions and 3 deletions

View File

@ -468,9 +468,6 @@ struct form_control *html_forms_get_control_for_node(struct form *forms, dom_nod
dom_exception err;
dom_string *ds_name = NULL;
if (forms == NULL)
return NULL;
/* Step one, see if we already have a control */
for (f = forms; f != NULL; f = f->prev) {
for (ctl = f->controls; ctl != NULL; ctl = ctl->next) {