···4455Consider this entire package experimental, things **will** break.
6677-## Github is not the primary repository
77+## Tangled is not the primary repository
8899-If you're reading this on Github, keep in mind that this package is not developed here; the only code that lives here is the main branch, put here to allow others to access it easier. Development takes place on my personal Gitlab instance, which should also explain the `.gitlab-ci.yml` file ;)
99+If you're reading this on tangled, keep in mind that this package is not developed here; the only code that lives here is the main branch, put here to allow others to access it easier. Development takes place on my personal Gitlab instance, which should also explain the `.gitlab-ci.yml` file ;)
+3-2
lib/Multiformats/Varint.pm
···61616262 while($expect_next) {
6363 die 'Multiformats::Varint::varint_decode_stream: no next byte to read' if $stream->eof;
6464- my $next_byte;
6565- my $bread = $stream->read($next_byte, 1);
6464+ my $raw_byte;
6565+ my $bread = $stream->read($raw_byte, 1);
6666+ my $next_byte = unpack('C', $raw_byte);
6667 $x += ($next_byte & 0b01111111) << (7 * $num_bytes_read);
6768 $expect_next = ($next_byte >> 7 == 0b1) ? 1 : undef;
6869 $num_bytes_read += $bread;