diff -r cb0c8a2aff2d -r 2f328ce1b263 httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp --- a/httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp Fri May 14 16:23:37 2010 +0300 +++ b/httpfilters/httpfilterauthentication/Src/HttpFilterDigestAuthentication.cpp Thu May 27 13:21:53 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() ) ) {