diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-03-02 21:24:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-03-03 10:15:26 +0100 |
commit | 896c097f1fa4bc9d2e5ea87a696c125bb335ecac (patch) | |
tree | ad863a15643411ae1f67233ae56200cdf9d5d201 /soltools/mkdepend | |
parent | 96e3a64125354b61ecd43f7a76e6189e69968912 (diff) |
cid#1500573 silence Untrusted loop bound
Change-Id: Ic932ba264e6e593ac8e5432fa9afd440ff1aa2d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130898
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'soltools/mkdepend')
-rw-r--r-- | soltools/mkdepend/pr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/soltools/mkdepend/pr.c b/soltools/mkdepend/pr.c index 2b0825221df6..7911502ed813 100644 --- a/soltools/mkdepend/pr.c +++ b/soltools/mkdepend/pr.c @@ -67,6 +67,7 @@ void add_include(struct filepointer *filep, struct inclist *file, struct inclist if (!newfile->i_searched) { newfile->i_searched = TRUE; content = getfile(newfile->i_file); + // coverity[tainted_data] - this is a build time tool find_includes(content, newfile, file_red, 0, failOK, incCollection, symbols); freefile(content); } |