mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 04:17:05 +00:00
avformat/libzmq: fix check for zmq protocol prefix
Fixes ticket #11134.
Signed-off-by: Marton Balint <cus@passwd.hu>
(cherry picked from commit a87a96105e
)
This commit is contained in:
parent
4af46cabf6
commit
c5a083a50b
@ -94,7 +94,7 @@ static int zmq_proto_open(URLContext *h, const char *uri, int flags)
|
|||||||
return AVERROR_EXTERNAL;
|
return AVERROR_EXTERNAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (av_strstart(uri, "zmq:", &uri)) {
|
if (!av_strstart(uri, "zmq:", &uri)) {
|
||||||
av_log(h, AV_LOG_ERROR, "URL %s lacks prefix\n", uri);
|
av_log(h, AV_LOG_ERROR, "URL %s lacks prefix\n", uri);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user