From: Stefan Esser Date: Mon, 15 Jul 2002 16:37:15 +0000 (+0000) Subject: use Zend API to access llist count X-Git-Tag: dev~288 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11ac4e035c1aafb73240d664eadd21315639c25f;p=php use Zend API to access llist count --- diff --git a/main/rfc1867.c b/main/rfc1867.c index 45c770e950..862aa7438a 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -364,7 +364,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);