Commit 93fcb9bb authored by Sjoerd Mullender's avatar Sjoerd Mullender

One NULL should have been 0.

parent 721cd289
......@@ -1902,7 +1902,7 @@ form_setattr(f, name, v)
if (v == NULL) {
err_setstr(TypeError, "can't delete form attributes");
return NULL;
return 0;
}
return setmember((char *)f->ob_form, form_memberlist, name, v);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment