summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils/html.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/utils/html.c b/src/utils/html.c
index d377046..c1075e8 100644
--- a/src/utils/html.c
+++ b/src/utils/html.c
@@ -580,11 +580,15 @@ mq_html_form(const gchar *submit_label, const gchar *reset_label, ...)
len += strlen(child);
}
va_end(ap);
- len += strlen("<div class=\"dialog-buttonbox\">\n") +
- strlen("<input type=\"reset\" value=\"") + strlen(reset_label) +
- strlen("\">\n<input type=\"submit\" value=\"") +
- strlen(submit_label) + strlen("\">\n</div>\n") +
- strlen("</form>\n");
+ len += strlen("<div class=\"dialog-buttonbox\">\n");
+ len += strlen("<input type=\"reset\" value=\"");
+ len += strlen(reset_label);
+ len += strlen("\">\n");
+ len += strlen("<input type=\"submit\" value=\"");
+ len += strlen(submit_label);
+ len += strlen("\">\n");
+ len += strlen("</div>\n");
+ len += strlen("</form>\n");
++len; /* NUL byte */
/* Build string. */
@@ -599,9 +603,11 @@ mq_html_form(const gchar *submit_label, const gchar *reset_label, ...)
ptr = g_stpcpy(ptr, "<div class=\"dialog-buttonbox\">\n");
ptr = g_stpcpy(ptr, "<input type=\"reset\" value=\"");
ptr = g_stpcpy(ptr, reset_label);
- ptr = g_stpcpy(ptr, "\">\n<input type=\"submit\" value=\"");
+ ptr = g_stpcpy(ptr, "\">\n");
+ ptr = g_stpcpy(ptr, "<input type=\"submit\" value=\"");
ptr = g_stpcpy(ptr, submit_label);
- ptr = g_stpcpy(ptr, "\">\n</div>\n");
+ ptr = g_stpcpy(ptr, "\">\n");
+ ptr = g_stpcpy(ptr, "</div>\n");
ptr = g_stpcpy(ptr, "</form>\n"); /* g_stpcpy() adds the NUL. */
return form;