[svn:mod_parrot] r632 - mod_parrot/trunk/src

[email protected] Mon, 27 Apr 2009 13:13:06 -0700 (PDT)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Mon Apr 27 13:13:03 2009
New Revision: 632

Modified:
   mod_parrot/trunk/src/module.c

Log:
properly initialize ctx_pool_name in minfo struct


Modified: mod_parrot/trunk/src/module.c
==============================================================================
--- mod_parrot/trunk/src/module.c	(original)
+++ mod_parrot/trunk/src/module.c	Mon Apr 27 13:13:03 2009
@@ -556,6 +556,7 @@
 
     minfo = apr_pcalloc(p, sizeof(modparrot_module_info));
     minfo->namespace = (char *)apr_pstrdup(p, namespace);
+    minfo->ctx_pool_name = NULL;
 
     /* populate hook array for use by register_meta_hooks */
     num = Parrot_PMC_get_intval(interp, hook_array);