Commit 1635060b authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: plug a memory leak when using Verbatim Input at a prompt

This fixes https://savannah.gnu.org/bugs/?53089.
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -354,6 +354,8 @@ void do_statusbar_verbatim_input(void)
kbinput = get_verbatim_kbinput(bottomwin, &kbinput_len);
do_statusbar_output(kbinput, kbinput_len, FALSE);
free(kbinput);
}
/* Return the zero-based column position of the cursor in the answer. */
......
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