Browse Source

check for zero-length

pull/304/head
orignal 9 years ago
parent
commit
c42636b0ee
  1. 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…
Cancel
Save