summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-21 14:54:24 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-21 14:54:24 +0000
commit4808266b7a2aefa68f681e0378316e43728b49d8 (patch)
tree8e75f609dcf0acc6649da47fb7cece8567236165 /pp.c
parent44914417440ff636ff6c83c30d188eb9a75336d3 (diff)
downloadperl-4808266b7a2aefa68f681e0378316e43728b49d8.tar.gz
microperl: if DIEing on no-functionality, the has-functionality
would be unreachable code. p4raw-id: //depot/perl@16723
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp.c b/pp.c
index 7ff513802c..531516b2d1 100644
--- a/pp.c
+++ b/pp.c
@@ -3305,12 +3305,12 @@ PP(pp_crypt)
# else
sv_setpv(TARG, PerlProc_crypt(tmps, SvPV(right, n_a)));
# endif
+ SETs(TARG);
+ RETURN;
#else
DIE(aTHX_
"The crypt() function is unimplemented due to excessive paranoia.");
#endif
- SETs(TARG);
- RETURN;
}
PP(pp_ucfirst)