From abdef93f723964974e6788a271bde50ba3a1aecd Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 17 Feb 2021 13:06:35 -0700 Subject: [PATCH] Remove duplicated MALLOC_OPTIONS and MALLOC_CONF env variables. --- lib/eventlog/Makefile.in | 2 -- lib/iolog/Makefile.in | 4 ++-- plugins/sudoers/Makefile.in | 2 -- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/eventlog/Makefile.in b/lib/eventlog/Makefile.in index a71d6faa8..3a02bd9a3 100644 --- a/lib/eventlog/Makefile.in +++ b/lib/eventlog/Makefile.in @@ -148,8 +148,6 @@ fuzz: check: $(TEST_PROGS) @if test X"$(cross_compiling)" != X"yes"; then \ - MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \ - MALLOC_CONF="abort:true,junk:true"; export MALLOC_CONF; \ LC_ALL=C; export LC_ALL; \ unset LANG || LANG=; \ MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \ diff --git a/lib/iolog/Makefile.in b/lib/iolog/Makefile.in index f36ddf69d..fda01e6a7 100644 --- a/lib/iolog/Makefile.in +++ b/lib/iolog/Makefile.in @@ -206,10 +206,10 @@ fuzz: $(FUZZ_PROGS) check: $(TEST_PROGS) fuzz @if test X"$(cross_compiling)" != X"yes"; then \ - MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \ - MALLOC_CONF="abort:true,junk:true"; export MALLOC_CONF; \ LC_ALL=C; export LC_ALL; \ unset LANG || LANG=; \ + MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \ + MALLOC_CONF="abort:true,junk:true"; export MALLOC_CONF; \ rval=0; \ ./check_iolog_json $(srcdir)/regress/iolog_json/*.in || rval=`expr $$rval + $$?`; \ ./check_iolog_path $(srcdir)/regress/iolog_path/data || rval=`expr $$rval + $$?`; \ diff --git a/plugins/sudoers/Makefile.in b/plugins/sudoers/Makefile.in index 7695953ec..839e098c9 100644 --- a/plugins/sudoers/Makefile.in +++ b/plugins/sudoers/Makefile.in @@ -497,8 +497,6 @@ fuzz: $(FUZZ_PROGS) check: $(TEST_PROGS) visudo testsudoers cvtsudoers fuzz @if test X"$(cross_compiling)" != X"yes"; then \ - MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \ - MALLOC_CONF="abort:true,junk:true"; export MALLOC_CONF; \ LC_ALL=C; export LC_ALL; \ unset LANG || LANG=; \ MALLOC_OPTIONS=S; export MALLOC_OPTIONS; \