| Index: third_party/protobuf/src/google/protobuf/io/gzip_stream.cc
|
| diff --git a/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc b/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc
|
| index 9c621b6a279b077373f7498b392a6e6b6573e4df..a569eff0a7a900368bf8e366aa42b137c88bf8fb 100644
|
| --- a/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc
|
| +++ b/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc
|
| @@ -168,7 +168,7 @@ void GzipInputStream::BackUp(int count) {
|
| }
|
| bool GzipInputStream::Skip(int count) {
|
| const void* data;
|
| - int size;
|
| + int size = 0;
|
| bool ok = Next(&data, &size);
|
| while (ok && (size < count)) {
|
| count -= size;
|
|
|