mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
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:
parent
1f193675c4
commit
e1e1f0cb3b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue