Commit 67ffa5b5 67ffa5b504c97842c8a7e123af6fa4587928f64e by Sergey Poznyakoff

Bugfix

1 parent 1721cf28
......@@ -138,13 +138,13 @@ mu_auth_data_alloc (struct mu_auth_data **ptr,
shell = "/dev/null";
if (!mailbox)
{
rc = mu_construct_user_mailbox_url (&tmp_mailbox_name, name);
int rc = mu_construct_user_mailbox_url (&tmp_mailbox_name, name);
if (rc)
return rc;
mailbox_name = tmp_mailbox_name;
mailbox = tmp_mailbox_name;
}
size = = sizeof (**ptr) +
size = sizeof (**ptr) +
strlen (name) + 1 +
strlen (passwd) + 1 +
strlen (gecos) + 1 +
......