diff --git a/env/posix/ocf_env.h b/env/posix/ocf_env.h index a1113c73..4a96c8f7 100644 --- a/env/posix/ocf_env.h +++ b/env/posix/ocf_env.h @@ -187,7 +187,7 @@ static inline void env_secure_free(const void *ptr, size_t size) { if (ptr) { #if SECURE_MEMORY_HANDLING - memset(ptr, size, 0); + memset(ptr, 0, size); /* TODO: flush CPU caches ? */ ENV_BUG_ON(munlock(ptr)); #endif