1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

don't print error message if incomplete

This commit is contained in:
orignal 2022-12-03 14:27:52 -05:00
parent 629c718527
commit 1ac171152a

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013-2020, The PurpleI2P Project
* Copyright (c) 2013-2022, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
@ -57,7 +57,8 @@ namespace data
if ((err = inflate (&m_Inflator, Z_NO_FLUSH)) == Z_STREAM_END)
return outLen - m_Inflator.avail_out;
// else
LogPrint (eLogError, "Gzip: Inflate error ", err);
if (err)
LogPrint (eLogError, "Gzip: Inflate error ", err);
return 0;
}
}
@ -128,7 +129,8 @@ namespace data
return outLen - m_Deflator.avail_out;
}
// else
LogPrint (eLogError, "Gzip: Deflate error ", err);
if (err)
LogPrint (eLogError, "Gzip: Deflate error ", err);
return 0;
}
@ -158,7 +160,8 @@ namespace data
offset = outLen - m_Deflator.avail_out;
}
// else
LogPrint (eLogError, "Gzip: Deflate error ", err);
if (err)
LogPrint (eLogError, "Gzip: Deflate error ", err);
return 0;
}