]> git.sesse.net Git - vlc/commitdiff
File: (try to) give up reading on I/O error
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 18 Jan 2009 18:16:03 +0000 (20:16 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 18 Jan 2009 18:16:03 +0000 (20:16 +0200)
Whether this works depends on the stream and demux behaviour. There may
be a better way to fix this.

modules/access/file.c

index eefa2a2590a81e592d77ceb1193883eb4b4fe46c..a7defbbfc4e852368476ca04e2dc83bbfcf28bdf 100644 (file)
@@ -229,6 +229,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."));
+                p_access->info.b_eof = true;
                 return 0;
         }
     }