Make SHA1::addBytes(..., 0) a no-op instead of an assertion failure
parent
3aa28bc7a2
commit
bf9f50bc0e
|
@ -146,7 +146,7 @@ void SHA1::process()
|
|||
void SHA1::addBytes( const char* data, int num )
|
||||
{
|
||||
assert( data );
|
||||
assert( num > 0 );
|
||||
assert( num >= 0 );
|
||||
// add these bytes to the running total
|
||||
size += num;
|
||||
// repeat until all data is processed
|
||||
|
|
Loading…
Reference in New Issue