From 11ac4e035c1aafb73240d664eadd21315639c25f Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Mon, 15 Jul 2002 16:37:15 +0000 Subject: [PATCH] use Zend API to access llist count --- main/rfc1867.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1