Bugfix.
* mh/folder.c (_fixup): Pass a pointer to mailbox to mu_msgset_create.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -787,7 +787,7 @@ _fixup (const char *name, const char *value, struct fixup_data *fd, int flags) | ... | @@ -787,7 +787,7 @@ _fixup (const char *name, const char *value, struct fixup_data *fd, int flags) |
787 | return 0; | 787 | return 0; |
788 | } | 788 | } |
789 | 789 | ||
790 | rc = mu_msgset_create (&msgset, NULL, MU_MSGSET_UID); | 790 | rc = mu_msgset_create (&msgset, fd->mbox, MU_MSGSET_UID); |
791 | if (rc) | 791 | if (rc) |
792 | { | 792 | { |
793 | mu_diag_funcall (MU_DIAG_ERROR, "mu_msgset_create", NULL, rc); | 793 | mu_diag_funcall (MU_DIAG_ERROR, "mu_msgset_create", NULL, rc); | ... | ... |
-
Please register or sign in to post a comment