Commit 3bd624b4 authored by Michael Niedermayer's avatar Michael Niedermayer

Fix url_feof() for file appendings.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9c55fe8f
......@@ -269,6 +269,10 @@ int url_feof(AVIOContext *s)
{
if(!s)
return 0;
if(s->eof_reached){
s->eof_reached=0;
fill_buffer(s);
}
return s->eof_reached;
}
......
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