Frommi / miniz_oxide

Rust replacement for miniz
MIT License
174 stars 49 forks source link

Fix test-only function write_u16_le() #45

Closed Shnatsel closed 5 years ago

Shnatsel commented 5 years ago

This function used to ignore its pos parameter. It's compiled in testing configurations only and is only ever invoked with pos = 0, so it has not been spotted earlier.

oyvindln commented 5 years ago

Ah, nice catch.