jonhoo / volley

Volley is a benchmarking tool for measuring the performance of server networking stacks.
MIT License
123 stars 12 forks source link

Avoid undefined behavior; don't alias mutable ptrs #11

Closed jonhoo closed 9 years ago

jonhoo commented 9 years ago

Fixes #8.

jonhoo commented 9 years ago

cc @steveklabnik: was this what you were thinking?

steveklabnik commented 9 years ago

Yes, this is basically it. Now there's no aliasing.

I think you can even get away with not setting challenge to zero initially, as you'll always set it before you use it.