backout 15c3543f4647 so it can be re-merged with valid description

This commit is contained in:
Patrick McManus 2011-06-21 10:45:24 -04:00
parent 49b3d76372
commit e86b1a09dc

View File

@ -715,15 +715,6 @@ nsWebSocketHandler::ProcessInput(PRUint8 *buffer, PRUint32 count)
framingLength += 8;
if (avail < framingLength)
break;
if (mFramePtr[2] & 0x80) {
// Section 4.2 says that the most significant bit MUST be
// 0. (i.e. this is really a 63 bit value)
LOG(("WebSocketHandler:: high bit of 64 bit length set"));
AbortSession(NS_ERROR_ILLEGAL_VALUE);
return NS_ERROR_ILLEGAL_VALUE;
}
// copy this in case it is unaligned
PRUint64 tempLen;
memcpy(&tempLen, mFramePtr + 2, 8);