Commit ff95af18 ff95af18ea9e38cbb97b01e5ef2c8b7fcc98a132 by Sergey Poznyakoff

amd: bugfix.

* mailbox/amd.c (read_size_file): Fix return value.
1 parent dc0dbafe
......@@ -1005,6 +1005,8 @@ read_size_file (struct _amd_data *amd, mu_off_t *psize)
rc = 1;
fclose (fp);
}
else
rc = 1;
free (name);
return rc;
}
......