diff options
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/findutils/find.c b/findutils/find.c index 6f7be4fc2..76cd18c1a 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -109,6 +109,8 @@ struct globals { struct G_sizecheck { \ char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \ }; \ + /* we have to zero it out because of NOEXEC */ \ + memset(&G, 0, offsetof(struct globals, need_print)); \ G.need_print = 1; \ G.recurse_flags = ACTION_RECURSE; \ } while (0) |