diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-10-31 23:32:46 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 23:32:46 +0000 |
| commit | 0bc3652fc7ef2d06c17043220275932875658e10 (patch) | |
| tree | ddd9d9d9110cc8b5d8f508af0467588e2c65fac4 /src/check_builtin.cpp | |
| parent | 141299eb02bc9a7330daa30d75d279e84ba28cc3 (diff) | |
| parent | 672fc9fc4d20d06810a66aa6133a94a0565eae05 (diff) | |
Merge pull request #1256 from Yawning/feature/volatile-memset
Add a way to securely scrub memory
Diffstat (limited to 'src/check_builtin.cpp')
| -rw-r--r-- | src/check_builtin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp index 2373317c3..482813792 100644 --- a/src/check_builtin.cpp +++ b/src/check_builtin.cpp @@ -2598,6 +2598,7 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32 break; case BuiltinProc_mem_zero: + case BuiltinProc_mem_zero_volatile: { operand->mode = Addressing_NoValue; operand->type = t_invalid; |