Revision 82ce6c6d137811dd0fb7f1dc0e7c4c2c91f13c53 authored by Alexander Potapenko on 09 November 2018, 16:40:43 UTC, committed by Alexander Potapenko on 28 October 2021, 12:32:22 UTC
The random number generator may use uninitialized memory, but it may not
return uninitialized values. Unpoison the output buffer in
_extract_crng() to prevent false reports.

Signed-off-by: Alexander Potapenko <glider@google.com>
---
Link: https://linux-review.googlesource.com/id/I7fb905a13e987fe70886c5e50068ffd3f1e94ea3
1 parent 442f3a0
Raw File
file-size.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
set -- $(ls -dn "$1")
printf '%s\n' "$5"
back to top