From: Sean Bright Date: Fri, 6 Apr 2001 17:48:34 +0000 (+0000) Subject: Fixed possible overflow again. X-Git-Tag: php-4.0.6RC1~469 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1ba58a46c085f1496501a6cb905a86adf833370;p=php Fixed possible overflow again. # Heh... --- diff --git a/ext/skeleton/skeleton.c b/ext/skeleton/skeleton.c index f2b658f6c2..07fba18518 100644 --- a/ext/skeleton/skeleton.c +++ b/ext/skeleton/skeleton.c @@ -97,7 +97,7 @@ PHP_FUNCTION(confirm_extname_compiled) convert_to_string_ex(arg); - len = sprintf(string, "Congratulations! You have successfully modified ext/%.80s/config.m4. Module %.80s is now compiled into PHP.", "extname", Z_STRVAL_PP(arg)); + len = sprintf(string, "Congratulations! You have successfully modified ext/%.78s/config.m4. Module %.78s is now compiled into PHP.", "extname", Z_STRVAL_PP(arg)); RETURN_STRINGL(string, len, 1); } /* }}} */