You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/10/09 00:05:17 UTC

svn commit: r1530445 - /tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java

Author: markt
Date: Tue Oct  8 22:05:17 2013
New Revision: 1530445

URL: http://svn.apache.org/r1530445
Log:
Fix the fix in r1530423

Modified:
    tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java

Modified: tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java?rev=1530445&r1=1530444&r2=1530445&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/websocket/WsFrameBase.java Tue Oct  8 22:05:17 2013
@@ -271,7 +271,7 @@ public abstract class WsFrameBase {
         } else if (textMessage) {
             result = processDataText();
         } else {
-            return processDataBinary();
+            result = processDataBinary();
         }
         checkRoomPayload();
         return result;



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org