[svn:parrot] r42870 - branches/cs_csr_merge/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Thu Dec 3 11:33:01 UTC 2009
Author: bacek
Date: Thu Dec 3 11:32:49 2009
New Revision: 42870
URL: https://trac.parrot.org/parrot/changeset/42870
Log:
Initialize new fields in CallSignature
Modified:
branches/cs_csr_merge/src/pmc/callsignature.pmc
Modified: branches/cs_csr_merge/src/pmc/callsignature.pmc
==============================================================================
--- branches/cs_csr_merge/src/pmc/callsignature.pmc Thu Dec 3 09:39:29 2009 (r42869)
+++ branches/cs_csr_merge/src/pmc/callsignature.pmc Thu Dec 3 11:32:49 2009 (r42870)
@@ -388,6 +388,9 @@
attrs->type_tuple = PMCNULL;
attrs->positionals = NULL;
attrs->num_positionals = 0;
+ attrs->returns_values = NULL;
+ attrs->returns_size = 0;
+ attrs->returns_resize_threshold = 0;
PObj_custom_mark_destroy_SETALL(SELF);
}
More information about the parrot-commits
mailing list