Commit eac5fe0e eac5fe0e0ded8b85a63b239d7523d4297fc99a51 by Sergey Poznyakoff

* pop3d/bulletin.c (open_bulletin_mailbox): Bugfix.

1 parent 627c1072
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;
......