Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: net/spdy/spdy_frame_reader.cc

Issue 12262002: Minor cleanup in SpdyFrameBuilder. No functional/compiled change. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_frame_reader.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_frame_reader.cc
diff --git a/net/spdy/spdy_frame_reader.cc b/net/spdy/spdy_frame_reader.cc
index 3765c69420e5262adbdc7f717c096dfb41bfabc3..a5919a6eada3e8b832a9957aa2f07f3e69f76dea 100644
--- a/net/spdy/spdy_frame_reader.cc
+++ b/net/spdy/spdy_frame_reader.cc
@@ -69,7 +69,7 @@ bool SpdyFrameReader::ReadUInt31(uint32* result) {
// Zero out highest-order bit.
if (success) {
- *result &= kStreamIdMask;
+ *result &= 0x7fffffff;
}
return success;
« no previous file with comments | « net/spdy/spdy_frame_reader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698