about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/nix-compat/src/wire/bytes_writer.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/nix-compat/src/wire/bytes_writer.rs b/tvix/nix-compat/src/wire/bytes_writer.rs
index 8c39168951..5941441f44 100644
--- a/tvix/nix-compat/src/wire/bytes_writer.rs
+++ b/tvix/nix-compat/src/wire/bytes_writer.rs
@@ -184,13 +184,13 @@ where
                 }
                 BytesPacketPosition::Padding(pos) => {
                     // Write remaining padding, if there is padding to write.
-                    let padding_len = super::bytes::padding_len(*this.payload_len) as usize;
+                    let total_padding_len = super::bytes::padding_len(*this.payload_len) as usize;
 
-                    if pos != padding_len {
+                    if pos != total_padding_len {
                         let bytes_written = ensure_nonzero_bytes_written(ready!(this
                             .inner
                             .as_mut()
-                            .poll_write(cx, &EMPTY_BYTES[..padding_len]))?)?;
+                            .poll_write(cx, &EMPTY_BYTES[..total_padding_len]))?)?;
                         *this.state = BytesPacketPosition::Padding(pos + bytes_written);
                     } else {
                         // everything written, break