Added missing deallocation
This commit is contained in:
parent
c4a598007b
commit
40fc0b29f5
@ -130,8 +130,10 @@ private:
|
||||
output[bytes - 1] |= (1 << bits);
|
||||
if (++bits == 8) {
|
||||
bits = 0;
|
||||
if (--bytes == 0)
|
||||
return;
|
||||
if (--bytes == 0) {
|
||||
i = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
leaf = parent;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user