Fix use of uninitialized pointer, CID#1436911.
This commit is contained in:
parent
51ae22db18
commit
aedbcf598e
1 changed files with 2 additions and 2 deletions
|
@ -473,8 +473,8 @@ static gboolean filteringaction_apply(FilteringAction * action, MsgInfo * info)
|
|||
AddressBookFile *abf = NULL;
|
||||
ItemFolder *folder = NULL;
|
||||
#endif
|
||||
gchar *buf;
|
||||
Header *header;
|
||||
gchar *buf = NULL;
|
||||
Header *header = NULL;
|
||||
gint errors = 0;
|
||||
|
||||
#ifndef USE_ALT_ADDRBOOK
|
||||
|
|
Loading…
Reference in a new issue