Commit 3a6ea349 3a6ea349ae7b1a941acd6ec882e93ad5b3a27ca4 by Sergey Poznyakoff

Bugfix.

* mh/folder.c (_fixup): Pass a pointer to mailbox
to mu_msgset_create.
1 parent 49bebd55
...@@ -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);
......