X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fstring.c;h=be1a1d7a4771ddaf2a90cb4ce97552a4ff1f9211;hb=2820726f1d93bd7ccc43805d1b6a4613b606ee10;hp=b59ed668f703c51856464591f0ab0edae9589d1b;hpb=c0b9d3e87264ae274b37116103ecc9e1d1b0c647;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/string.c b/src/src/string.c index b59ed668f..be1a1d7a4 100644 --- a/src/src/string.c +++ b/src/src/string.c @@ -1141,7 +1141,7 @@ common use is a null string and zero size and pointer, on first use for a string being built. The "if" above then allocates, but Coverity assume that the "if" might not happen and whines for a null-deref done by the memcpy(). */ -/* coverity[deref_parm_field_in_call] */ +/* coverity[deref_parm_field_in_call] : FALSE */ memcpy(string + p, s, count); *ptr = p + count; return string;