diff options
author | Sascha Schumann <sas@php.net> | 2000-06-19 21:35:01 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-19 21:35:01 +0000 |
commit | 8741aa825df47b3806602860e192dca83bdc6151 (patch) | |
tree | 8583ca29f547ac19c18a33a57fa817977ebe73f8 /ext/imap/php_imap.c | |
parent | ffbb3c8bd8ed5d0648eb65610cc9bfb7d180aead (diff) | |
download | php-git-8741aa825df47b3806602860e192dca83bdc6151.tar.gz |
Unbreak imap by fixing the assignment
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 7aff4ce5d4..59bb710201 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2960,7 +2960,7 @@ PHP_FUNCTION(imap_fetch_overview) } if (env->from) { env->from->next=NULL; - address = '\0'; + address[0] = '\0'; rfc822_write_address(address, env->from); add_property_string(myoverview, "from", address, 1); } |