This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavf/libsmbclient: return AVERROR_EOF for EOF.
Fix trac ticket
#7387
.
tags/n4.1
Nicolas George
6 years ago
parent
93b35a0555
commit
b09a092edd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/libsmbclient.c
+ 1
- 1
libavformat/libsmbclient.c
View File
@@ -166,7 +166,7 @@ static int libsmbc_read(URLContext *h, unsigned char *buf, int size)
return ret;
}
return bytes_read;
return bytes_read
? bytes_read : AVERROR_EOF
;
}
static int libsmbc_write(URLContext *h, const unsigned char *buf, int size)
Write
Preview
Loading…
Cancel
Save