]> granicus.if.org Git - neomutt/commitdiff
Fix NULL pointer issue in mutt_format_string().
authorRocco Rutte <pdmef@gmx.net>
Mon, 8 Jan 2007 11:01:24 +0000 (11:01 +0000)
committerRocco Rutte <pdmef@gmx.net>
Mon, 8 Jan 2007 11:01:24 +0000 (11:01 +0000)
menu.c

diff --git a/menu.c b/menu.c
index 21449ab956b2e23dc0d48903820da0811dacac9e..e8393b1754f40090c34da255aba3f66507a1308b 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -160,7 +160,7 @@ void menu_pad_string (char *s, size_t n)
   int shift = option (OPTARROWCURSOR) ? 3 : 0;
   int cols = COLS - shift;
 
-  mutt_format_string (s, n, cols, cols, 0, ' ', scratch, strlen (scratch), 1);
+  mutt_format_string (s, n, cols, cols, 0, ' ', scratch, mutt_strlen (scratch), 1);
   s[n - 1] = 0;
   FREE (&scratch);
 }