From 3bc9bc5de87c6bbafe3df2a24384221cacf35f21 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 10 Aug 2005 08:36:46 +0000 Subject: [PATCH] - MFH estrdup/strndup change (as hinted by Andi) --- ext/spl/php_spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index aa8b9e0a38..d0eda76689 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -596,7 +596,7 @@ PHP_MINIT_FUNCTION(spl) PHP_RINIT_FUNCTION(spl) /* {{{ */ { - SPL_G(autoload_extensions) = estrdup(".inc,.php"); + SPL_G(autoload_extensions) = estrndup(".inc,.php", sizeof(".inc,.php")-1); return SUCCESS; } /* }}} */ -- 2.50.1