aboutsummaryrefslogtreecommitdiff
path: root/okhttp
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2018-03-27 11:06:11 -0700
committerEric Gribkoff <ericgribkoff@google.com>2018-03-28 14:53:19 -0700
commitb82366159b068d4a41e1dd18d093b9555f5692e8 (patch)
tree357c5181328d86716f189cfa58e5134c62e6427a /okhttp
parent14003c14ccddf2b30156b7a5a9321b5daad37f7e (diff)
downloadgrpc-grpc-java-b82366159b068d4a41e1dd18d093b9555f5692e8.tar.gz
okhttp: fix HPACK reader bug
Diffstat (limited to 'okhttp')
-rw-r--r--okhttp/third_party/okhttp/java/io/grpc/okhttp/internal/framed/Hpack.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/okhttp/third_party/okhttp/java/io/grpc/okhttp/internal/framed/Hpack.java b/okhttp/third_party/okhttp/java/io/grpc/okhttp/internal/framed/Hpack.java
index 940735abe..498169c36 100644
--- a/okhttp/third_party/okhttp/java/io/grpc/okhttp/internal/framed/Hpack.java
+++ b/okhttp/third_party/okhttp/java/io/grpc/okhttp/internal/framed/Hpack.java
@@ -164,7 +164,6 @@ final class Hpack {
}
private void clearDynamicTable() {
- headerList.clear();
Arrays.fill(dynamicTable, null);
nextHeaderIndex = dynamicTable.length - 1;
headerCount = 0;