mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix url_feof() for file appendings.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9c55fe8f4c
commit
3bd624b4ee
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user