liebharc / basic_dsp

Basic DSP vector operations for Rust.
Apache License 2.0
43 stars 5 forks source link

fix panic safety issue: guard against double drop #48

Closed JOE1994 closed 3 years ago

JOE1994 commented 3 years ago

Fixes #47

Wraps self with ManuallyDrop to guard against double drop bugs. ManuallyDrop is a zero-cost wrapper type.

Thank you for reviewing this PR :+1:

liebharc commented 3 years ago

Wow, thanks a lot for reporting AND fixing this. Much appreciated :).