Explorar o código

fix(js_generator): check for proto

Peter Marton %!s(int64=7) %!d(string=hai) anos
pai
achega
e479adf394
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/google/protobuf/compiler/js/js_generator.cc

+ 1 - 0
src/google/protobuf/compiler/js/js_generator.cc

@@ -1681,6 +1681,7 @@ void Generator::GenerateProvides(const GeneratorOptions& options,
       if (options.import_style == GeneratorOptions::kImportCommonJsStrict) {
         string namespaceObject = *it;
         // Remove "proto." from the namespace object
+        GOOGLE_CHECK(namespaceObject.compare(0, 6, "proto."));
         namespaceObject.erase(0, 6);
         printer->Print("goog.exportSymbol('$name$', null, proto);\n", "name",
                 namespaceObject);