From 50ea26760da4e0fcf4980e739e1d0ed520de8d59 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 24 Feb 2007 02:17:47 +0000 Subject: - Avoid sprintf, even when checked copy'n'paste or changes lead to errors --- ext/pspell/pspell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/pspell') diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index c9e5b806a2..fc8f2937cc 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -783,7 +783,7 @@ static PHP_FUNCTION(pspell_config_ignore) convert_to_long_ex(pignore); ignore = Z_LVAL_PP(pignore); - sprintf(ignore_str, "%ld", ignore); + snprintf(ignore_str, sizeof(ignore_str), "%ld", ignore); pspell_config_replace(config, "ignore", ignore_str); RETURN_TRUE; -- cgit v1.2.1