diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-19 19:55:36 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-19 19:55:36 +0000 |
commit | a0ae667081b123207d4d0f2b6e6b7a5597859a57 (patch) | |
tree | 335105ba5225605ea51e588a01773c1d6e6c1703 /sv.c | |
parent | 0af71dba73667d8fa3e845db4ca9d01e3491e5d5 (diff) | |
download | perl-a0ae667081b123207d4d0f2b6e6b7a5597859a57.tar.gz |
Fix gross win32 build issues
p4raw-id: //depot/perlio@12511
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9625,7 +9625,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, * their pointers copied. */ IV i; - CLONE_PARAMS* param = (CLONE_PARAMS*) MALLOC(SIZEOF(CLONE_PARAMS)); + CLONE_PARAMS* param = (CLONE_PARAMS*) malloc(sizeof(CLONE_PARAMS)); PerlInterpreter *my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter)); PERL_SET_THX(my_perl); @@ -10335,3 +10335,4 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, } #endif /* USE_ITHREADS */ + |