avformat/libzmq: fix check for zmq protocol prefix

Fixes ticket #11134.

Signed-off-by: Marton Balint <cus@passwd.hu>
(cherry picked from commit a87a96105e9150dba07e3a660e41f78557f3356c)
release/7.0
Marton Balint 5 months ago
parent 51482627ca
commit 6a1ceb3c72
  1. 2
      libavformat/libzmq.c

@ -94,7 +94,7 @@ static int zmq_proto_open(URLContext *h, const char *uri, int flags)
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);
return AVERROR(EINVAL);
}

Loading…
Cancel
Save