diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-11-02 17:52:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-02 20:02:41 +0100 |
commit | e838a0714f9e5969b8bf1a26b8b94f0dbdec2f76 (patch) | |
tree | 5857f814dc9772e567fba50e6b6d322121745751 | |
parent | 8fb538f719eb27c2f8a533aee731cf2897580631 (diff) |
cid#1448338 silence Untrusted value as argument
Change-Id: Ibf076d86181990d1ea6aded4af4345961e9f53e9
Reviewed-on: https://gerrit.libreoffice.org/81945
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sc/source/filter/lotus/op.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/lotus/op.cxx b/sc/source/filter/lotus/op.cxx index 20790ac72bd6..02cd9b0e014d 100644 --- a/sc/source/filter/lotus/op.cxx +++ b/sc/source/filter/lotus/op.cxx @@ -591,7 +591,7 @@ void OP_SheetName123(LotusContext& rContext, SvStream& rStream, sal_uInt16 nLeng if (!ValidTab(nSheetNum)) return; - // coverity[tainted_data] - ValidTab has sanitized nSheetNum + // coverity[tainted_data : FALSE] - ValidTab has sanitized nSheetNum rContext.pDoc->MakeTable(nSheetNum); if (!sSheetName.empty()) { |