From a538c464cb3e9b84812fbe4ec3f80cb0d3ccda99 Mon Sep 17 00:00:00 2001 From: Thomas Guillem Date: Thu, 19 Apr 2018 11:47:04 +0200 Subject: [PATCH] nfs: reset eof state on seek --- modules/access/nfs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/access/nfs.c b/modules/access/nfs.c index 5a3aec20d8..0d01dd8426 100644 --- a/modules/access/nfs.c +++ b/modules/access/nfs.c @@ -261,6 +261,8 @@ FileSeek(stream_t *p_access, uint64_t i_pos) if (vlc_nfs_mainloop(p_access, nfs_seek_finished_cb) < 0) return VLC_EGENERIC; + p_sys->b_eof = false; + return VLC_SUCCESS; } -- 2.11.4.GIT