interpreter structure should be nulled under -DMULTIPLICITY
authorGurusamy Sarathy <gsar@cpan.org>
Fri, 10 Dec 1999 01:39:13 +0000 (01:39 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Fri, 10 Dec 1999 01:39:13 +0000 (01:39 +0000)
p4raw-id: //depot/perl@4678

perl.c

diff --git a/perl.c b/perl.c
index 800e83b..8c7674f 100644 (file)
--- a/perl.c
+++ b/perl.c
@@ -94,6 +94,7 @@ perl_alloc(void)
     /* New() needs interpreter, so call malloc() instead */
     my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
     PERL_SET_INTERP(my_perl);
+    Zero(my_perl, 1, PerlInterpreter);
     return my_perl;
 }
 #endif /* PERL_IMPLICIT_SYS */