summaryrefslogtreecommitdiff
path: root/reentr.pl
diff options
context:
space:
mode:
Diffstat (limited to 'reentr.pl')
-rw-r--r--reentr.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/reentr.pl b/reentr.pl
index 84676d467d..ddbfab36f1 100644
--- a/reentr.pl
+++ b/reentr.pl
@@ -858,6 +858,7 @@ Perl_reentrant_retry(const char *f, ...)
void *retptr = NULL;
va_list ap;
va_start(ap, f);
+ {
#ifdef USE_REENTRANT_API
# if defined(USE_HOSTENT_BUFFER) || defined(USE_GRENT_BUFFER) || defined(USE_NETENT_BUFFER) || defined(USE_PWENT_BUFFER) || defined(USE_PROTOENT_BUFFER) || defined(USE_SERVENT_BUFFER)
void *p0;
@@ -1076,6 +1077,7 @@ Perl_reentrant_retry(const char *f, ...)
#else
PERL_UNUSED_ARG(f);
#endif
+ }
va_end(ap);
return retptr;
}