diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-02-23 20:35:29 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-05-20 20:55:42 +0100 |
commit | 39f3f7f442aed93239540238d19a15f6020da747 (patch) | |
tree | 9df5e66451005c6e648bc44c629a0e863ec8f7e3 | |
parent | b1faab355535118c9fb99fcc343501012923ece2 (diff) | |
download | perl-39f3f7f442aed93239540238d19a15f6020da747.tar.gz |
PL_endav can be NULL, so in S_ithread_create() no need to set it to newAV().
-rwxr-xr-x | dist/threads/threads.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs index f341b6fb79..a5595959e4 100755 --- a/dist/threads/threads.xs +++ b/dist/threads/threads.xs @@ -784,7 +784,7 @@ S_ithread_create( * they are created */ SvREFCNT_dec(PL_endav); - PL_endav = newAV(); + PL_endav = NULL; clone_param.flags = 0; if (SvPOK(init_function)) { |