commit 4171477fb5811cd83fca570ba4ad07e982b70f8f
parent d28ed53db13dc0674b2260a08d5c0e074bdfec60
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Wed, 2 Apr 2014 20:17:05 +0000
Silencing a compiler warning about a possibly uninitialized variable.
Patch by Mike Frysinger (from November 2011).
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4704 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -3,6 +3,8 @@
* .gitignore: Add 'config.cache', created by './configure -C'.
* src/nano.c (die_save_file): Newer gcc warns about set-but-unused
variables, so add a dummy if() check to kill that off.
+ * src/search.c (search_init): Silence a compiler warning about a
+ variable possibly being used uninitialized.
2014-03-31 Chris Allegretta <chrisa@asty.org>
* doc/syntax/go.nanorc: basic go syntax highlighting
diff --git a/src/search.c b/src/search.c
@@ -219,7 +219,7 @@ int search_init(bool replacing, bool use_answer)
statusbar(_("Cancelled"));
return -1;
} else {
- void (*func)(void);
+ void (*func)(void) = NULL;
for (s = sclist; s != NULL; s = s->next)
if ((s->menu & currmenu) && i == s->seq) {