about summary refs log tree commit diff
path: root/elf/tst-execstack.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-execstack.c')
-rw-r--r--elf/tst-execstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/tst-execstack.c b/elf/tst-execstack.c
index 114f341d76..7e898b4f58 100644
--- a/elf/tst-execstack.c
+++ b/elf/tst-execstack.c
@@ -227,7 +227,7 @@ static void
 deeper (void (*f) (void))
 {
   char stack[1100 * 1024];
-  memfrob (stack, sizeof stack);
+  explicit_bzero (stack, sizeof stack);
   (*f) ();
   memfrob (stack, sizeof stack);
 }