diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-28 19:43:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-29 12:17:00 +0200 |
commit | b550d72293582e37112dcc1349e845a69bfe1414 (patch) | |
tree | 355ac63fa9bd16e816e527e5ffd3b62d9ebe6bb8 /codemaker/source | |
parent | 857dee030f0a45cb3e28a0f3870b02a97fd8e280 (diff) |
cid#1473812 Untrusted value as argument
Change-Id: I95877c014d16426622e7114384c8e189c140943c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114836
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'codemaker/source')
-rw-r--r-- | codemaker/source/cppumaker/cppumaker.cxx | 1 | ||||
-rw-r--r-- | codemaker/source/javamaker/javamaker.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/codemaker/source/cppumaker/cppumaker.cxx b/codemaker/source/cppumaker/cppumaker.cxx index b1769eda87a6..384e2b5aa079 100644 --- a/codemaker/source/cppumaker/cppumaker.cxx +++ b/codemaker/source/cppumaker/cppumaker.cxx @@ -36,6 +36,7 @@ #include "cppuoptions.hxx" #include "cpputype.hxx" +// coverity[tainted_data] - this is a build time tool SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { CppuOptions options; try { diff --git a/codemaker/source/javamaker/javamaker.cxx b/codemaker/source/javamaker/javamaker.cxx index 3a35be56a39b..044292bf6b8f 100644 --- a/codemaker/source/javamaker/javamaker.cxx +++ b/codemaker/source/javamaker/javamaker.cxx @@ -36,6 +36,7 @@ #include "javaoptions.hxx" #include "javatype.hxx" +// coverity[tainted_data] - this is a build time tool SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { JavaOptions options; try { |