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 5873d9651e
commit 10a34e19e2

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
}