From: Kevin Harwell Date: Wed, 11 Feb 2015 17:45:00 +0000 (+0000) Subject: ari_websockets: removed extra check on websocket session read X-Git-Tag: 14.0.0-beta1~1256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc85e55d88e5b2f49e4f059b87650b1d808409c3;p=thirdparty%2Fasterisk.git ari_websockets: removed extra check on websocket session read When merging the websocket timeout issue (ASTERISK-24701) an extra, almost duplicate, check was left in the code that should not have been. This removes it. ASTERISK-24701 #close Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/4412/ ........ Merged revisions 431693 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@431695 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/ari/ari_websockets.c b/res/ari/ari_websockets.c index 683f00e19e..f3b764bf15 100644 --- a/res/ari/ari_websockets.c +++ b/res/ari/ari_websockets.c @@ -104,12 +104,6 @@ struct ast_json *ast_ari_websocket_session_read( return NULL; } - - if (ast_websocket_fd(session->ws_session) <= 0) { - return NULL; - } - - while (!message) { int res; char *payload;