mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-08 22:39:44 +02:00
avformat/avio: Check av_opt_copy() for failure
Fixes: CID1477416 Unchecked return value Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit f8611ae1efc47fbe1aff140c89bee4fd1d62d3e1) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
95224c3ffb
commit
5d3c96cf11
@ -316,8 +316,11 @@ int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags,
|
||||
int ret = ffurl_alloc(puc, filename, flags, int_cb);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
if (parent)
|
||||
av_opt_copy(*puc, parent);
|
||||
if (parent) {
|
||||
ret = av_opt_copy(*puc, parent);
|
||||
if (ret < 0)
|
||||
goto fail;
|
||||
}
|
||||
if (options &&
|
||||
(ret = av_opt_set_dict(*puc, options)) < 0)
|
||||
goto fail;
|
||||
|
Loading…
x
Reference in New Issue
Block a user