mirror of https://github.com/adamdruppe/arsd.git
thanks BorisCarvajal for spotting bug in issue 233
This commit is contained in:
parent
a0236624f2
commit
9ad7b08ce0
|
@ -112,7 +112,7 @@ bool processTar(
|
||||||
|
|
||||||
if(*bytesRemainingOnCurrentFile) {
|
if(*bytesRemainingOnCurrentFile) {
|
||||||
bool isNew = *bytesRemainingOnCurrentFile == header.size();
|
bool isNew = *bytesRemainingOnCurrentFile == header.size();
|
||||||
if(*bytesRemainingOnCurrentFile < 512) {
|
if(*bytesRemainingOnCurrentFile <= 512) {
|
||||||
handleData(header, isNew, true, dataBuffer[0 .. cast(size_t) *bytesRemainingOnCurrentFile]);
|
handleData(header, isNew, true, dataBuffer[0 .. cast(size_t) *bytesRemainingOnCurrentFile]);
|
||||||
*bytesRemainingOnCurrentFile = 0;
|
*bytesRemainingOnCurrentFile = 0;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue