[Libreoffice-commits] core.git: include/com

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Sun Sep 20 12:29:14 UTC 2020


 include/com/sun/star/uno/Sequence.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7fc01e2c51607e0356b277ddc06f548127b8ff04
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sun Sep 20 12:34:15 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sun Sep 20 14:28:33 2020 +0200

    fix __coverity_tainted_data_sanitize__ signature
    
    argument of type "const sal_Int8 *" is incompatible with parameter of type
    "void *"
    
    Change-Id: I0f1dba700516043d54c4e46edae9753312b5ad2e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103071
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/include/com/sun/star/uno/Sequence.hxx b/include/com/sun/star/uno/Sequence.hxx
index 373d97624cd8..62b8b1df96c3 100644
--- a/include/com/sun/star/uno/Sequence.hxx
+++ b/include/com/sun/star/uno/Sequence.hxx
@@ -74,7 +74,7 @@ inline Sequence< E >::Sequence(
 }
 
 #if defined(__COVERITY__)
-extern "C" void __coverity_tainted_data_sanitize__(void *);
+extern "C" void __coverity_tainted_data_sanitize__(const void *);
 #endif
 
 template< class E >


More information about the Libreoffice-commits mailing list