PVS: Not all members of a class are initialized inside the constructor

This commit is contained in:
wmayer
2019-02-17 11:04:33 +01:00
parent a73b10203a
commit 4e42e42957

View File

@@ -9,6 +9,7 @@ FilterInputStreambuf::FilterInputStreambuf( streambuf *inbuf, bool del_inbuf )
: _inbuf( inbuf),
_del_inbuf( del_inbuf )
{
_s_pos = 0;
if ( _inbuf == NULL ) {
// throw an exception
}