aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/util
diff options
context:
space:
mode:
authorJohn Millikin <jmillikin@stripe.com>2017-10-16 12:05:21 -0700
committerJohn Millikin <jmillikin@stripe.com>2017-10-16 12:05:21 -0700
commitaff10976fc7722b1174fc3dcce15bfe8ebdfcbcd (patch)
tree5c6a858ce30c8ed183dc4f88c6f55d758e0b3354 /src/google/protobuf/util
parentf850188e6e1021b4fe21ecb0aca548a54c272ce5 (diff)
downloadprotobuf-aff10976fc7722b1174fc3dcce15bfe8ebdfcbcd.tar.gz
protobuf-aff10976fc7722b1174fc3dcce15bfe8ebdfcbcd.tar.bz2
protobuf-aff10976fc7722b1174fc3dcce15bfe8ebdfcbcd.zip
Fix undefined memory management found by Clang's sanitizers.
See https://github.com/google/protobuf/issues/3752 for context.
Diffstat (limited to 'src/google/protobuf/util')
-rw-r--r--src/google/protobuf/util/json_util.cc8
-rw-r--r--src/google/protobuf/util/json_util.h2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/google/protobuf/util/json_util.cc b/src/google/protobuf/util/json_util.cc
index c85f1899..ce3569ce 100644
--- a/src/google/protobuf/util/json_util.cc
+++ b/src/google/protobuf/util/json_util.cc
@@ -61,9 +61,11 @@ void ZeroCopyStreamByteSink::Append(const char* bytes, size_t len) {
buffer_size_ -= len;
return;
}
- memcpy(buffer_, bytes, buffer_size_);
- bytes += buffer_size_;
- len -= buffer_size_;
+ if (buffer_size_ > 0) {
+ memcpy(buffer_, bytes, buffer_size_);
+ bytes += buffer_size_;
+ len -= buffer_size_;
+ }
if (!stream_->Next(&buffer_, &buffer_size_)) {
// There isn't a way for ByteSink to report errors.
buffer_size_ = 0;
diff --git a/src/google/protobuf/util/json_util.h b/src/google/protobuf/util/json_util.h
index f4f4380a..dee3ddba 100644
--- a/src/google/protobuf/util/json_util.h
+++ b/src/google/protobuf/util/json_util.h
@@ -179,7 +179,7 @@ namespace internal {
class LIBPROTOBUF_EXPORT ZeroCopyStreamByteSink : public strings::ByteSink {
public:
explicit ZeroCopyStreamByteSink(io::ZeroCopyOutputStream* stream)
- : stream_(stream), buffer_size_(0) {}
+ : stream_(stream), buffer_(NULL), buffer_size_(0) {}
~ZeroCopyStreamByteSink();
virtual void Append(const char* bytes, size_t len);