]> git.wh0rd.org Git - nano.git/commitdiff
properly handle the case where the user resized the window while at the
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 1 Nov 2005 19:06:01 +0000 (19:06 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 1 Nov 2005 19:06:01 +0000 (19:06 +0000)
statusbar prompt, in which case prompt won't be NULL when statusq() is
called

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3070 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/prompt.c

index 8eb422a3998989479dd08da19aa50c5ea84cdb95..b902270dc09697002ff1996f703b327c1fae26cb 100644 (file)
@@ -826,7 +826,10 @@ int statusq(bool allow_tabs, const shortcut *s, const char *curranswer,
     bool list = FALSE;
 #endif
 
-    assert(prompt == NULL);
+    /* prompt has been freed and set to NULL unless the user resized
+     * while at the statusbar prompt. */
+    if (prompt != NULL)
+       free(prompt);
 
     prompt = charalloc(((COLS - 4) * mb_cur_max()) + 1);