]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
go: ignore CVE-2022-41716
authorPeter Marko <peter.marko@siemens.com>
Wed, 19 Apr 2023 21:49:55 +0000 (23:49 +0200)
committerSteve Sakoman <steve@sakoman.com>
Wed, 19 Apr 2023 22:15:07 +0000 (12:15 -1000)
This CVE is specific to Microsoft Windows, ignore it.

Patch fixing it (https://go-review.googlesource.com/c/go/+/446916)
also adds a redundant check to generic os/exec which
could be backported but it should not be necessary as
backport always takes a small risk to break old code.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/recipes-devtools/go/go-1.17.13.inc

index 15d19ed1246acc74aa5bae273545455d4d6219c7..34d58aec2f16152f2bd5f4d06425da26082a5f0d 100644 (file)
@@ -34,3 +34,6 @@ SRC_URI[main.sha256sum] = "a1a48b23afb206f95e7bbaa9b898d965f90826f6f1d1fc0c1d784
 # fix in 1.17 onwards where we can drop this.
 # https://github.com/golang/go/issues/30999#issuecomment-910470358
 CVE_CHECK_IGNORE += "CVE-2021-29923"
+
+# This is specific to Microsoft Windows
+CVE_CHECK_IGNORE += "CVE-2022-41716"