summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-09-22 14:41:05 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-09-22 16:44:09 +0200
commit2e145afcfe9bcda3dbf916bb7a91bcf45442f12e (patch)
tree8011a0bff1fc00763e73003fb5254e7ebe5a4a3f /cppu
parent9b1af015fba717db26e6419365b25b4c274fedea (diff)
tweak markup
Change-Id: I5d7171045a9c271e2ef5f456411fa4d3eb5f1571 Reviewed-on: https://gerrit.libreoffice.org/60895 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/sequence.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/uno/sequence.cxx b/cppu/source/uno/sequence.cxx
index 1a15b1c8a8d6..848aaa39f428 100644
--- a/cppu/source/uno/sequence.cxx
+++ b/cppu/source/uno/sequence.cxx
@@ -269,7 +269,7 @@ static inline bool idefaultConstructElements(
{
if (nAlloc >= 0)
{
- // coverity[suspicious_sizeof] - sizeof(uno_Sequence*) is correct here
+ // coverity[suspicious_sizeof : FALSE] - sizeof(uno_Sequence*) is correct here
pSeq = reallocSeq(pSeq, sizeof(uno_Sequence*), nAlloc);
}
if (pSeq != nullptr)
@@ -518,7 +518,7 @@ static inline bool icopyConstructFromElements(
}
case typelib_TypeClass_SEQUENCE: // sequence of sequence
{
- // coverity[suspicious_sizeof] - sizeof(uno_Sequence*) is correct here
+ // coverity[suspicious_sizeof : FALSE] - sizeof(uno_Sequence*) is correct here
pSeq = reallocSeq(pSeq, sizeof(uno_Sequence*), nAlloc);
if (pSeq != nullptr)
{