Tidying: coverity issues
[users/jgh/exim.git] / src / src / string.c
index b59ed668f703c51856464591f0ab0edae9589d1b..be1a1d7a4771ddaf2a90cb4ce97552a4ff1f9211 100644 (file)
@@ -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;