Revert "Remove some unneeded initializers."

This reverts commit fb1bae0700.

These initializers were totally necessary. I clearly wasn't
thinking straight when I removed them.
This commit is contained in:
Carl Worth 2009-10-24 08:06:23 -07:00
parent 1f193675c4
commit e1e1f0cb3b

View file

@ -590,7 +590,7 @@ int
dump_command (int argc, char *argv[])
{
FILE *output;
notmuch_database_t *notmuch;
notmuch_database_t *notmuch = NULL;
notmuch_query_t *query;
notmuch_results_t *results;
notmuch_message_t *message;
@ -666,7 +666,7 @@ int
restore_command (int argc, char *argv[])
{
FILE *input;
notmuch_database_t *notmuch;
notmuch_database_t *notmuch = NULL;
char *line = NULL;
size_t line_size, line_len;
regex_t regex;