浏览代码

Merge pull request #4739 from asimshankar/tf-bytesize

Graceful failure in SerializeToArray().
Feng Xiao 7 年之前
父节点
当前提交
36c5780a3d
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      src/google/protobuf/message_lite.cc

+ 5 - 1
src/google/protobuf/message_lite.cc

@@ -316,7 +316,11 @@ bool MessageLite::SerializeToArray(void* data, int size) const {
 }
 
 bool MessageLite::SerializePartialToArray(void* data, int size) const {
-  int byte_size = ByteSizeLong();
+  size_t byte_size = ByteSizeLong();
+  if (byte_size > INT_MAX) {
+    GOOGLE_LOG(ERROR) << "Exceeded maximum protobuf size of 2GB: " << size;
+    return false;
+  }
   if (size < byte_size) return false;
   uint8* start = reinterpret_cast<uint8*>(data);
   uint8* end = SerializeWithCachedSizesToArray(start);