nervosnetwork / molecule

Another serialization system: minimalist and canonicalization.
MIT License
36 stars 23 forks source link

fix: remove a piece of unsafe code #50

Closed yangby-cryptape closed 2 years ago

yangby-cryptape commented 2 years ago

First, the code works fine with current stable rust toolchain. But, rust toolchain doesn't guarantee that; so it could be broken in the future.

The latest docs said:

Notice that the rules around uninitialized integers are not finalized yet, but until they are, it is advisable to avoid them.

And, there is no safe way to create an uninitialized array.