Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Jun 20, 2024
1 parent ad8435d commit c8c67e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/windows/bcrypt_aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ static struct aws_byte_cursor s_gcm_get_working_slice(
/* If there's overflow, prepend it to the working buffer, then append the data */
if (cipher_impl->overflow.len) {
aws_byte_buf_init(scratch, cipher_impl->cipher.allocator, cipher_impl->overflow.len + data.len);
struct aws_byte_cursor overflow_cur = aws_byte_cursor_from_buf(&cipher_impl->overflow);
struct aws_byte_cursor overflow_cur = aws_byte_cursor_from_buf(&cipher_impl->overflow);
aws_byte_buf_append(scratch, &overflow_cur);
aws_byte_buf_reset(&cipher_impl->overflow, true);
aws_byte_buf_append(scratch, &data);
Expand Down

0 comments on commit c8c67e5

Please sign in to comment.