]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Shuffle coverity marker
authorFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 14 Jan 2014 20:36:03 +0000 (21:36 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Tue, 14 Jan 2014 20:36:03 +0000 (21:36 +0100)
src/SBuf.cc

index 635d806903287501ea067cc15a8b3495f246acfc..08c6210bd8138314cafdc0e8d13249f5ee0eb4f9 100644 (file)
@@ -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);
 }