Commit 5fdc56db authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fail permanently on fatal file I/O error

This fixes a busy loop.
parent 8d3e95ab
......@@ -245,6 +245,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
msg_Err (p_access, "read failed (%m)");
intf_UserFatal (p_access, false, _("File reading failed"),
_("VLC could not read the file."));
return 0;
}
}
else if( i_ret > 0 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment