mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 07:11:41 +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[])
|
dump_command (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
FILE *output;
|
FILE *output;
|
||||||
notmuch_database_t *notmuch;
|
notmuch_database_t *notmuch = NULL;
|
||||||
notmuch_query_t *query;
|
notmuch_query_t *query;
|
||||||
notmuch_results_t *results;
|
notmuch_results_t *results;
|
||||||
notmuch_message_t *message;
|
notmuch_message_t *message;
|
||||||
|
@ -666,7 +666,7 @@ int
|
||||||
restore_command (int argc, char *argv[])
|
restore_command (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
FILE *input;
|
FILE *input;
|
||||||
notmuch_database_t *notmuch;
|
notmuch_database_t *notmuch = NULL;
|
||||||
char *line = NULL;
|
char *line = NULL;
|
||||||
size_t line_size, line_len;
|
size_t line_size, line_len;
|
||||||
regex_t regex;
|
regex_t regex;
|
||||||
|
|
Loading…
Reference in a new issue