Commit f38f3b88 authored by Martin Storsjö's avatar Martin Storsjö

tls: Use ERR_get_error() in do_tls_poll

The return value ret isn't an error code that can be passed
to ERR_error_string().

This makes the error messages printed actually contain useful
information.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 1149fbc7
...@@ -87,7 +87,7 @@ static int do_tls_poll(URLContext *h, int ret) ...@@ -87,7 +87,7 @@ static int do_tls_poll(URLContext *h, int ret)
} else if (ret == SSL_ERROR_WANT_WRITE) { } else if (ret == SSL_ERROR_WANT_WRITE) {
p.events = POLLOUT; p.events = POLLOUT;
} else { } else {
av_log(NULL, AV_LOG_ERROR, "%s\n", ERR_error_string(ret, NULL)); av_log(NULL, AV_LOG_ERROR, "%s\n", ERR_error_string(ERR_get_error(), NULL));
return AVERROR(EIO); return AVERROR(EIO);
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment