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

check for zero-length

This commit is contained in:
orignal 2015-11-20 10:10:13 -05:00
parent 54b2c8bd7e
commit c42636b0ee

View File

@ -154,7 +154,7 @@ namespace data
if (isFirstTime) iT64Build();
n = InCount/4;
m = InCount%4;
if (!m)
if (InCount && !m)
outCount = 3*n;
else {
outCount = 0;