[rtmpdump] branch master updated. b346706 Fix getting swf hash with https URLs

gitolite gil at avcodec.org
Mon Nov 7 20:44:09 CET 2011


The branch, master has been updated
       via  b3467069ad7c26d748ca13ce0ee88a41f85b22dd (commit)
      from  c90c05892cbaebfb1b2095759597d9fb38238c64 (commit)


- Log -----------------------------------------------------------------
commit b3467069ad7c26d748ca13ce0ee88a41f85b22dd
Author:     Jeff Johnson <jeff at rogueamoeba.com>
AuthorDate: Mon Nov 7 11:43:26 2011 -0800
Commit:     Howard Chu <hyc at highlandsun.com>
CommitDate: Mon Nov 7 11:43:26 2011 -0800

    Fix getting swf hash with https URLs

diff --git a/librtmp/hashswf.c b/librtmp/hashswf.c
index 3c56b69..5576730 100644
--- a/librtmp/hashswf.c
+++ b/librtmp/hashswf.c
@@ -163,7 +163,7 @@ HTTP_get(struct HTTP_ctx *http, const char *url, HTTP_read_callback *cb)
 #else
       TLS_client(RTMP_TLS_ctx, sb.sb_ssl);
       TLS_setfd(sb.sb_ssl, sb.sb_socket);
-      if ((i = TLS_connect(sb.sb_ssl)) < 0)
+      if (TLS_connect(sb.sb_ssl) < 0)
 	{
 	  RTMP_Log(RTMP_LOGERROR, "%s, TLS_Connect failed", __FUNCTION__);
 	  ret = HTTPRES_LOST_CONNECTION;

-----------------------------------------------------------------------

Summary of changes:
 librtmp/hashswf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 



More information about the rtmpdump mailing list