Changeset 49932 in webkit


Ignore:
Timestamp:
Oct 22, 2009 12:11:24 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-22 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix calculation of length in WebSocketChannel.cpp
https://bugs.webkit.org/show_bug.cgi?id=30656

  • websockets/WebSocketChannel.cpp: (WebCore::WebSocketChannel::didReceiveData):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49929 r49932  
     12009-10-22  Fumitoshi Ukai  <ukai@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix calculation of length in WebSocketChannel.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=30656
     7
     8        * websockets/WebSocketChannel.cpp:
     9        (WebCore::WebSocketChannel::didReceiveData):
     10
    1112009-10-21  Dumitru Daniliuc  <dumi@chromium.org>
    212
  • trunk/WebCore/websockets/WebSocketChannel.cpp

    r48270 r49932  
    185185                    return;
    186186                }
    187                 length = length * 128 + *p & 0x7f;
     187                length = length * 128 + (*p & 0x7f);
    188188                ++p;
    189189            }
Note: See TracChangeset for help on using the changeset viewer.