From 9ad7b08ce096cda72181104a8e73e6197330caad Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 5 Jan 2020 09:40:07 -0500 Subject: [PATCH] thanks BorisCarvajal for spotting bug in issue 233 --- archive.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive.d b/archive.d index b7c02c2..8d14c26 100644 --- a/archive.d +++ b/archive.d @@ -112,7 +112,7 @@ bool processTar( if(*bytesRemainingOnCurrentFile) { bool isNew = *bytesRemainingOnCurrentFile == header.size(); - if(*bytesRemainingOnCurrentFile < 512) { + if(*bytesRemainingOnCurrentFile <= 512) { handleData(header, isNew, true, dataBuffer[0 .. cast(size_t) *bytesRemainingOnCurrentFile]); *bytesRemainingOnCurrentFile = 0; } else {