Commit c28f9a2e authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

crtools: Use memzero_p

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
parent 6c4798fd
......@@ -246,7 +246,7 @@ int main(int argc, char *argv[])
if (argc < 3)
goto usage;
memset(&zero_page_entry, 0, sizeof(zero_page_entry));
memzero_p(&zero_page_entry);
for (opt = getopt_long(argc, argv, short_opts, long_opts, &idx); opt != -1;
opt = getopt_long(argc, argv, short_opts, long_opts, &idx)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment