mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/protocols: Fix ff_urlcontext_child_class_next()
This fixes -read_ahead_limit Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a6cd817a54
commit
4899c02c38
@ -215,7 +215,7 @@ const AVClass *ff_urlcontext_child_class_next(const AVClass *prev)
|
||||
int i;
|
||||
|
||||
/* find the protocol that corresponds to prev */
|
||||
for (i = 0; url_protocols[i]; i++) {
|
||||
for (i = 0; prev && url_protocols[i]; i++) {
|
||||
if (url_protocols[i]->priv_data_class == prev) {
|
||||
i++;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user