diff -r 5f1cd966e0d9 -r c0c2f28ace9c httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp --- a/httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp Thu Aug 19 10:27:19 2010 +0300 +++ b/httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp Tue Aug 31 15:44:10 2010 +0300 @@ -508,8 +508,10 @@ { THTTPHdrVal fieldVal; // The name of the current field. THTTPHdrVal hdrVal; //A scratch hdrVal - // coverity [CHECKED_RETURN] - headers.GetField( wwwAuthenticate, ii, fieldVal ); + + // coverity [check_return] + // coverity [unchecked_value] + headers.GetField( wwwAuthenticate, ii, fieldVal ); switch ( fieldVal.StrF().Index( RHTTPSession::GetTable() ) ) {