From: Stefan Esser Date: Mon, 15 Jul 2002 16:40:57 +0000 (+0000) Subject: use Zend API to access llist count X-Git-Tag: php-4.2.3RC1~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7780655d3820b11e7fe4ffe2e2c15a8fe492b292;p=php use Zend API to access llist count --- diff --git a/main/rfc1867.c b/main/rfc1867.c index 9a0fe18daa..63a922a6f4 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -357,7 +357,7 @@ static int multipart_buffer_headers(multipart_buffer *self, zend_llist *header T entry.value = estrdup(value); entry.key = estrdup(key); - } else if (header->count) { /* If no ':' on the line, add to previous line */ + } else if (zend_llist_count(header)) { /* If no ':' on the line, add to previous line */ prev_len = strlen(prev_entry.value); cur_len = strlen(line);