diff options
Diffstat (limited to 'plugins/CryptoPP/crypto/gzip.cpp')
| -rw-r--r-- | plugins/CryptoPP/crypto/gzip.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CryptoPP/crypto/gzip.cpp b/plugins/CryptoPP/crypto/gzip.cpp index c9f75584de..3a52529dc6 100644 --- a/plugins/CryptoPP/crypto/gzip.cpp +++ b/plugins/CryptoPP/crypto/gzip.cpp @@ -65,12 +65,12 @@ void Gunzip::ProcessPrestreamHeader()  	if (flags & FILENAME)	// skip filename
  		do
 -			if(!m_inQueue.Get(b)) throw HeaderErr();
 +			if (!m_inQueue.Get(b)) throw HeaderErr();
  		while (b);
  	if (flags & COMMENTS)	// skip comments
  		do
 -			if(!m_inQueue.Get(b)) throw HeaderErr();
 +			if (!m_inQueue.Get(b)) throw HeaderErr();
  		while (b);
  }
  | 
