From 5d614048b479fe998177668301da4b5c1fd9f56a Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 11 Nov 2009 22:33:48 -0800 Subject: Initialize count of new files to zero. Leaving this variable uninitialized caused notmuch to display a random number while counting files for the new database. Signed-off-by: Keith Packard --- notmuch-new.c | 1 + 1 file changed, 1 insertion(+) (limited to 'notmuch-new.c') diff --git a/notmuch-new.c b/notmuch-new.c index 7603d3d..70e55cc 100644 --- a/notmuch-new.c +++ b/notmuch-new.c @@ -410,6 +410,7 @@ notmuch_new_command (void *ctx, if (new_database) { int count; + count = 0; count_files (db_path, &count); add_files_state.ignore_read_only_directories = FALSE; add_files_state.total_files = count; -- cgit v1.2.3