File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
8
8
9
9
You may also find the [ Update Guide] ( UPDATING.md ) useful.
10
10
11
+ ## [ 0.5.3] - 2018-06-26
12
+ ### Platform support
13
+ - OpenBSD, Bitrig: fix compilation (broken in 0.5.1) (#530 )
11
14
12
15
## [ 0.5.2] - 2018-06-18
13
16
### Platform support
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rand"
3
- version = " 0.5.2 " # NB: When modifying, also modify html_root_url in lib.rs
3
+ version = " 0.5.3 " # NB: When modifying, also modify html_root_url in lib.rs
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change 223
223
224
224
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
225
225
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
226
- html_root_url = "https://docs.rs/rand/0.5.2 " ) ]
226
+ html_root_url = "https://docs.rs/rand/0.5.3 " ) ]
227
227
228
228
#![ deny( missing_docs) ]
229
229
#![ deny( missing_debug_implementations) ]
Original file line number Diff line number Diff line change @@ -879,7 +879,7 @@ mod imp {
879
879
880
880
fn fill_chunk ( & mut self , dest : & mut [ u8 ] ) -> Result < ( ) , Error > {
881
881
let ret = unsafe {
882
- libc:: getentropy ( s . as_mut_ptr ( ) as * mut libc:: c_void , s . len ( ) )
882
+ libc:: getentropy ( dest . as_mut_ptr ( ) as * mut libc:: c_void , dest . len ( ) )
883
883
} ;
884
884
if ret == -1 {
885
885
return Err ( Error :: with_cause (
You can’t perform that action at this time.
0 commit comments