From 7780655d3820b11e7fe4ffe2e2c15a8fe492b292 Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Mon, 15 Jul 2002 16:40:57 +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 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); -- 2.50.1