Author: jhorwitz
Date: Mon Apr 27 13:26:38 2009
New Revision: 633
Modified:
mod_parrot/trunk/src/context.c
Log:
always initialize ctx_pool_name to NULL
Modified: mod_parrot/trunk/src/context.c
==============================================================================
--- mod_parrot/trunk/src/context.c (original)
+++ mod_parrot/trunk/src/context.c Mon Apr 27 13:26:38 2009
@@ -63,6 +63,7 @@
ctx = (*(modparrot_context **)apr_array_push(ctx_pool) =
(modparrot_context *)apr_pcalloc(p, sizeof(modparrot_context)));
ctx->ctx_pool = ctx_pool;
+ ctx->ctx_pool_name = NULL;
ctx->parent_interp = parent_interp;
}