mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
@@ -110,7 +110,7 @@ pub fn string_from_set(charset string, len int) string {
|
||||
mut buf := unsafe { malloc_noscan(len + 1) }
|
||||
for i in 0 .. len {
|
||||
unsafe {
|
||||
buf[i] = charset[intn(charset.len)]
|
||||
buf[i] = charset[intn(charset.len) or { 0 }]
|
||||
}
|
||||
}
|
||||
unsafe {
|
||||
|
Reference in New Issue
Block a user