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)
return 0;
}
rc = mu_msgset_create (&msgset, NULL, MU_MSGSET_UID);
rc = mu_msgset_create (&msgset, fd->mbox, MU_MSGSET_UID);
if (rc)
{
mu_diag_funcall (MU_DIAG_ERROR, "mu_msgset_create", NULL, rc);
......