From bca0019d43f25f6c6a5b032da2979dcedf2e37e0 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 1 Sep 2003 21:14:09 +0000 Subject: Fix initial buffer size --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/reflection/php_reflection.c') diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index b90b62e2e9..08eda3c105 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -71,7 +71,7 @@ typedef struct _string { void string_init(string *str) { - str->string = (char *) emalloc(1042); + str->string = (char *) emalloc(1024); str->len = 1; str->alloced = 1024; *str->string = '\0'; -- cgit v1.2.1