From: Nicholas Clark <nick@ccl4.org>
Date: Tue, 23 Feb 2010 20:35:29 +0000 (+0000)
Subject: PL_endav can be NULL, so in S_ithread_create() no need to set it to newAV().
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=39f3f7f442aed93239540238d19a15f6020da747;p=p5sagit%2Fp5-mst-13.2.git

PL_endav can be NULL, so in S_ithread_create() no need to set it to newAV().
---

diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs
index f341b6f..a559595 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)) {