diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-02-06 10:41:28 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-02-06 10:41:28 +0000 |
| commit | 4a179933b6c8d8ce19a153a57f42c4385c9aaadd (patch) | |
| tree | 2dc9339f1ecff53453c764fe953dd28abc9af25b /ext | |
| parent | f2772ecc0d4c7b120bf7ff5e28a0b08785e2ebcf (diff) | |
| download | php-git-4a179933b6c8d8ce19a153a57f42c4385c9aaadd.tar.gz | |
initialize to_r
remove needless semicolon
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/mbstring/mbstring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 8ebb56ef21..ef277feb43 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -164,7 +164,7 @@ static ZEND_BEGIN_ARG_INFO(third_and_rest_force_ref, 1) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(0) - ZEND_END_ARG_INFO(); + ZEND_END_ARG_INFO() /* {{{ mb_overload_def mb_ovld[] */ static const struct mb_overload_def mb_ovld[] = { @@ -3048,7 +3048,7 @@ PHP_FUNCTION(mb_send_mail) char *extra_cmd=NULL; int extra_cmd_len; int i; - char *to_r; + char *to_r = NULL; char *force_extra_parameters = INI_STR("mail.force_extra_parameters"); struct { int cnt_type:1; |
