]> git.proxmox.com Git - rustc.git/blobdiff - src/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
Imported Upstream version 1.11.0+dfsg1
[rustc.git] / src / compiler-rt / lib / sanitizer_common / sanitizer_suppressions.cc
index 46d46381331f8d4eeb07b3f2d50a4299067e855d..f0f2c9c725a1303940ca273c4e92f74c91f90abc 100644 (file)
@@ -127,7 +127,7 @@ void SuppressionContext::Parse(const char *str) {
         Printf("%s: failed to parse suppressions\n", SanitizerToolName);
         Die();
       }
-      Suppression s = {};
+      Suppression s;
       s.type = suppression_types_[type];
       s.templ = (char*)InternalAlloc(end2 - line + 1);
       internal_memcpy(s.templ, line, end2 - line);