* pop3d/bulletin.c (open_bulletin_mailbox): Bugfix.
Showing
2 changed files
with
5 additions
and
1 deletions
1 | 2008-01-28 Sergey Poznyakoff <gray@gnu.org.ua> | ||
2 | |||
3 | * pop3d/bulletin.c (open_bulletin_mailbox): Bugfix. | ||
4 | |||
1 | 2008-01-24 Sergey Poznyakoff <gray@gnu.org.ua> | 5 | 2008-01-24 Sergey Poznyakoff <gray@gnu.org.ua> |
2 | 6 | ||
3 | * mailbox/cfg_driver.c (mu_cfg_section_add_params): Initialize | 7 | * mailbox/cfg_driver.c (mu_cfg_section_add_params): Initialize | ... | ... |
... | @@ -52,7 +52,7 @@ open_bulletin_mailbox (mu_mailbox_t *pmbox) | ... | @@ -52,7 +52,7 @@ open_bulletin_mailbox (mu_mailbox_t *pmbox) |
52 | 52 | ||
53 | if ((status = mu_mailbox_open (tmbox, MU_STREAM_READ)) != 0) | 53 | if ((status = mu_mailbox_open (tmbox, MU_STREAM_READ)) != 0) |
54 | { | 54 | { |
55 | mu_mailbox_destroy (pmbox); | 55 | mu_mailbox_destroy (&tmbox); |
56 | mu_error (_("Cannot open bulletin mailbox `%s': %s"), | 56 | mu_error (_("Cannot open bulletin mailbox `%s': %s"), |
57 | bulletin_mbox_name, mu_strerror (status)); | 57 | bulletin_mbox_name, mu_strerror (status)); |
58 | return 1; | 58 | return 1; | ... | ... |
-
Please register or sign in to post a comment