summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2013-05-09 14:23:38 +0100
committerDavid Mitchell <davem@iabyn.com>2013-05-09 14:34:00 +0100
commit9a9b5ec9e94e1e207c265a6acd160fc49bca06fa (patch)
tree6d172543e9d62b5ce6dd790ada6130c3bdeae0c7 /pp_hot.c
parent3231f5793f6a3d7ee78eb1d68feb05c064b33315 (diff)
downloadperl-9a9b5ec9e94e1e207c265a6acd160fc49bca06fa.tar.gz
silence warnings under NO_TAINT_SUPPORT
The are lots of places where local vars aren't used when compiled with NO_TAINT_SUPPORT.
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 361b488124..dd9e5f15be 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -1243,6 +1243,12 @@ PP(pp_aassign)
tmp_egid = PerlProc_getegid();
}
TAINTING_set( TAINTING_get | (tmp_uid && (tmp_euid != tmp_uid || tmp_egid != tmp_gid)) );
+#ifdef NO_TAINT_SUPPORT
+ PERL_UNUSED_VAR(tmp_uid);
+ PERL_UNUSED_VAR(tmp_euid);
+ PERL_UNUSED_VAR(tmp_gid);
+ PERL_UNUSED_VAR(tmp_egid);
+#endif
}
PL_delaymagic = 0;