瀏覽代碼

Fix compilation error with SDL check flag in Visual Studio

Ruslan Manaev 6 年之前
父節點
當前提交
982d5d2ab1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/google/protobuf/generated_message_table_driven_lite.h

+ 1 - 1
src/google/protobuf/generated_message_table_driven_lite.h

@@ -237,7 +237,7 @@ static inline bool HandleString(io::CodedInputStream* input, MessageLite* msg,
 
   switch (ctype) {
     case StringType_INLINED: {
-      InlinedStringField* s;
+      InlinedStringField* s = nullptr;
       switch (cardinality) {
         case Cardinality_SINGULAR:
           // TODO(ckennelly): Is this optimal?