From 4ab8d46ddd63bcd1fab43b0f243eef941404679a Mon Sep 17 00:00:00 2001 From: Dmitry Stogov <dmitry@php.net> Date: Fri, 23 Nov 2007 13:38:32 +0000 Subject: Fixed definitions --- TSRM/tsrm_config_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'TSRM') diff --git a/TSRM/tsrm_config_common.h b/TSRM/tsrm_config_common.h index d2b9bfc994..83b6b9b02c 100644 --- a/TSRM/tsrm_config_common.h +++ b/TSRM/tsrm_config_common.h @@ -63,8 +63,8 @@ char *alloca (); do { if (use_heap) free(p); } while (0) #else # define TSRM_ALLOCA_FLAG(name) -# define tsrm_do_alloca(p) malloc(p) -# define tsrm_free_alloca(p) free(p) +# define tsrm_do_alloca(p, use_heap) malloc(p) +# define tsrm_free_alloca(p, use_heap) free(p) #endif #endif /* TSRM_CONFIG_COMMON_H */ -- cgit v1.2.1