snprintf(tmp, sizeof(tmp), "\"%s\" %lu bytes\n", path, (unsigned long) sb.st_size);
addstr(tmp);
}
- fclose (f);
+ safe_fclose (&f);
}
else
{
while ((msg = strtok (msg, " ,")) != NULL)
{
- n = atoi (msg);
- if (n > 0 && n <= Context->msgcount)
+ if (mutt_atoi (msg, &n) == 0 && n > 0 && n <= Context->msgcount)
{
n--;