From: Francesco Chemolli Date: Tue, 14 Jan 2014 20:36:03 +0000 (+0100) Subject: Shuffle coverity marker X-Git-Tag: SQUID_3_5_0_1~417 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d74a8264453fa05753527ca2c1e3ae2b5921161;p=thirdparty%2Fsquid.git Shuffle coverity marker --- diff --git a/src/SBuf.cc b/src/SBuf.cc index 635d806903..08c6210bd8 100644 --- a/src/SBuf.cc +++ b/src/SBuf.cc @@ -237,10 +237,10 @@ SBuf::append(const char * S, size_type Ssize) { if (S == NULL) return *this; - // coverity[access_dbuff_in_call] if (Ssize == npos) Ssize = strlen(S); debugs(24, 7, "from c-string to id " << id); + // coverity[access_dbuff_in_call] return lowAppend(S, Ssize); }