From 2e28fca5dd75cc7527afa8d8fb0729c8be87dd819c37efc57d924eb175bc297c Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Fri, 1 Aug 2025 11:34:44 -0400 Subject: [PATCH] Forgot a fix to make it build. --- src/form.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/form.cc b/src/form.cc index b1bd537..bbde43b 100644 --- a/src/form.cc +++ b/src/form.cc @@ -586,7 +586,7 @@ void Html_tag_open_isindex(DilloHtml *html, const char *tag, int tagsize) else action = a_Url_dup(html->base_url); - html->formNew(DILLO_HTML_METHOD_GET, action, DILLO_HTML_ENC_URLENCODED, + html->formNew(DILLO_HTML_METHOD_GET, action.get(), DILLO_HTML_ENC_URLENCODED, html->charset.has_value() ? html->charset.value().c_str() : nullptr); html->InFlags |= IN_FORM;