From 8741aa825df47b3806602860e192dca83bdc6151 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Mon, 19 Jun 2000 21:35:01 +0000 Subject: Unbreak imap by fixing the assignment --- ext/imap/php_imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/imap/php_imap.c') 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); } -- cgit v1.2.1