From 562d07e55a1000d0ff99ca1337a9e3ab4df4363b Mon Sep 17 00:00:00 2001 From: Emma Haruka Iwao Date: Wed, 1 Mar 2023 11:06:39 +0900 Subject: [PATCH] Suppress msan for recursive This is a false positive. The suspected variable is returned from the system library. PiperOrigin-RevId: 513092782 --- src/base/file/BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/base/file/BUILD.bazel b/src/base/file/BUILD.bazel index 49f3397b7..d2993361f 100644 --- a/src/base/file/BUILD.bazel +++ b/src/base/file/BUILD.bazel @@ -80,6 +80,8 @@ mozc_cc_library( name = "recursive", srcs = ["recursive.cc"], hdrs = ["recursive.h"], + # TODO(b/271087668) false positive + tags = ["nomsan"], deps = [ "//base:file_util", "//base:logging",