Commit 8e5f8404 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '64771397'

* commit '64771397':
  rtmpproto: Make sure to pass on the error code if read_connect failed
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5e379cd3 64771397
......@@ -2556,7 +2556,7 @@ reconnect:
if ((ret = gen_connect(s, rt)) < 0)
goto fail;
} else {
if (read_connect(s, s->priv_data) < 0)
if ((ret = read_connect(s, s->priv_data)) < 0)
goto fail;
}
......
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