summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorRalph Siemsen <ralph.siemsen@linaro.org>2022-11-17 11:54:53 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-07 15:06:37 +0000
commit122b22b36622ac416da64425bbf25df9625c84db (patch)
tree4410db9315a1bf3f305c2075808d49457026f814 /meta/recipes-devtools
parente4a273eb58edd98e00a242a380e1de3b06e61da1 (diff)
downloadpoky-122b22b36622ac416da64425bbf25df9625c84db.tar.gz
golang: ignore CVE-2021-33194
This is a bug in golang.org/x/net/html/parse.go. The golang compiler includes a partial copy of this under src/vendor/golang.org/x/net/ however the "html" subdirectory is not included. So this bug does not apply to the compiler itself. (From OE-Core rev: b8a851faef9990ccb41ded875fc79cf28abd4a4e) Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/go/go-1.14.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-1.14.inc b/meta/recipes-devtools/go/go-1.14.inc
index a0278b9816..ac4c4e9973 100644
--- a/meta/recipes-devtools/go/go-1.14.inc
+++ b/meta/recipes-devtools/go/go-1.14.inc
@@ -66,3 +66,6 @@ CVE_CHECK_WHITELIST += "CVE-2022-29526"
66# Issue only on windows 66# Issue only on windows
67CVE_CHECK_WHITELIST += "CVE-2022-29804" 67CVE_CHECK_WHITELIST += "CVE-2022-29804"
68CVE_CHECK_WHITELIST += "CVE-2022-30634" 68CVE_CHECK_WHITELIST += "CVE-2022-30634"
69
70# Issue is in golang.org/x/net/html/parse.go, not used in go compiler
71CVE_CHECK_WHITELIST += "CVE-2021-33194"