From 659282bfbc9c538db537d0a957ed7d9a35ed66a3 Mon Sep 17 00:00:00 2001 From: Rui Hirokawa Date: Fri, 6 Jul 2001 13:19:36 +0000 Subject: [PATCH] fixed argument number in mb_send_mail(). --- ext/mbstring/mbstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 1cd74cfdc51..1cb164b18a9 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -2525,7 +2525,7 @@ PHP_FUNCTION(mb_decode_numericentity) PHP_FUNCTION(mb_send_mail) { int argc, n; - pval **argv[4]; + pval **argv[5]; char *to=NULL, *message=NULL, *headers=NULL, *subject=NULL, *extra_cmd=NULL; char *message_buf=NULL, *subject_buf=NULL, *p; mbfl_string orig_str, conv_str;