mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-21 16:49:10 +01:00
check for zero-length
This commit is contained in:
parent
54b2c8bd7e
commit
c42636b0ee
1 changed files with 1 additions and 1 deletions
2
Base.cpp
2
Base.cpp
|
@ -154,7 +154,7 @@ namespace data
|
||||||
if (isFirstTime) iT64Build();
|
if (isFirstTime) iT64Build();
|
||||||
n = InCount/4;
|
n = InCount/4;
|
||||||
m = InCount%4;
|
m = InCount%4;
|
||||||
if (!m)
|
if (InCount && !m)
|
||||||
outCount = 3*n;
|
outCount = 3*n;
|
||||||
else {
|
else {
|
||||||
outCount = 0;
|
outCount = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue