Commit 450c78b7 450c78b7f461aeac6c3fc27aab8a6ffac0a2ffdd by Sergey Poznyakoff

(mh_alias_expand): Initialize incl

1 parent 1400dc96
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 2003, 2005 Free Software Foundation, Inc. 2 Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
3 3
4 GNU Mailutils is free software; you can redistribute it and/or modify 4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
...@@ -59,7 +59,9 @@ mh_alias_expand (char *str, mu_address_t *paddr, int *incl) ...@@ -59,7 +59,9 @@ mh_alias_expand (char *str, mu_address_t *paddr, int *incl)
59 size_t i; 59 size_t i;
60 char *buf; 60 char *buf;
61 mu_address_t exaddr = NULL; 61 mu_address_t exaddr = NULL;
62 62
63 if (incl)
64 *incl = 0;
63 mu_argcv_get (str, ",", NULL, &argc, &argv); 65 mu_argcv_get (str, ",", NULL, &argc, &argv);
64 for (i = 0; i < argc;) 66 for (i = 0; i < argc;)
65 { 67 {
......