mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 21:59:07 +00:00
Kernel: Fix rng regression from bc7a149039
This commit is contained in:
parent
11b9e8b366
commit
db6a4f2954
Notes:
sideshowbarker
2024-07-19 03:40:30 +09:00
Author: https://github.com/nico
Commit: db6a4f2954
Pull-request: https://github.com/SerenityOS/serenity/pull/3123
Reviewed-by: https://github.com/petelliott
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ public:
|
|||
cipher.key_stream(buffer_span, counter_span, &counter_span);
|
||||
|
||||
// Extract a new key from the prng stream.
|
||||
|
||||
cipher.key_stream(buffer_span, counter_span, &counter_span);
|
||||
Bytes key_span = m_key.span();
|
||||
cipher.key_stream(key_span, counter_span, &counter_span);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue