summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-02-06 10:41:28 +0000
committerAntony Dovgal <tony2001@php.net>2006-02-06 10:41:28 +0000
commit4a179933b6c8d8ce19a153a57f42c4385c9aaadd (patch)
tree2dc9339f1ecff53453c764fe953dd28abc9af25b /ext
parentf2772ecc0d4c7b120bf7ff5e28a0b08785e2ebcf (diff)
downloadphp-git-4a179933b6c8d8ce19a153a57f42c4385c9aaadd.tar.gz
initialize to_r
remove needless semicolon
Diffstat (limited to 'ext')
-rw-r--r--ext/mbstring/mbstring.c4
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;