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
md5proto: Fix order of operations.
tags/n0.9
Alex Converse
14 years ago
parent
999e7ebd23
commit
2b45222b6a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/md5proto.c
+ 1
- 1
libavformat/md5proto.c
View File
@@ -36,7 +36,7 @@ static int md5_open(URLContext *h, const char *filename, int flags)
return -1;
}
if (!flags & AVIO_FLAG_WRITE)
if (!
(
flags & AVIO_FLAG_WRITE)
)
return AVERROR(EINVAL);
av_md5_init(h->priv_data);
Write
Preview
Loading…
Cancel
Save