Don't add empty bytes to queue

This commit is contained in:
asonix 2024-05-19 16:17:44 -05:00
parent 96f5ebb549
commit 8eb1d10bae
1 changed files with 4 additions and 2 deletions

View File

@ -47,8 +47,10 @@ impl BigBytes {
self.frozen.push_back(current);
}
self.frozen_len += bytes.len();
self.frozen.push_back(bytes);
if !bytes.is_empty() {
self.frozen_len += bytes.len();
self.frozen.push_back(bytes);
}
}
// Returns a slice of the frontmost buffer