2067da
From 68ce2d0ea6da79b12a365e375e1c2ce882c77480 Mon Sep 17 00:00:00 2001
2067da
From: Stanislav Malyshev <stas@php.net>
2067da
Date: Mon, 26 May 2014 17:50:14 -0700
2067da
Subject: [PATCH] Fix bug #67328 (fileinfo: numerous file_printf calls
2067da
 resulting in performance degradation)
2067da
2067da
Upstream patch: https://github.com/file/file/commit/b8acc83781d5a24cc5101e525d15efe0482c280d
2067da
---
2067da
 ext/fileinfo/libmagic/cdf.c | 16 ++++------------
2067da
 1 file changed, 4 insertions(+), 12 deletions(-)
2067da
2067da
diff --git a/ext/fileinfo/libmagic/cdf.c b/ext/fileinfo/libmagic/cdf.c
2067da
index dd7177e..8dacd2f 100644
2067da
--- a/ext/fileinfo/libmagic/cdf.c
2067da
+++ b/ext/fileinfo/libmagic/cdf.c
2067da
@@ -942,7 +942,7 @@ int
2067da
 cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
2067da
     cdf_summary_info_header_t *ssi, cdf_property_info_t **info, size_t *count)
2067da
 {
2067da
-	size_t i, maxcount;
2067da
+	size_t maxcount;
2067da
 	const cdf_summary_info_header_t *si =
2067da
 	    CAST(const cdf_summary_info_header_t *, sst->sst_tab);
2067da
 	const cdf_section_declaration_t *sd =
2067da
@@ -957,21 +957,13 @@ cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
2067da
 	ssi->si_os = CDF_TOLE2(si->si_os);
2067da
 	ssi->si_class = si->si_class;
2067da
 	cdf_swap_class(&ssi->si_class);
2067da
-	ssi->si_count = CDF_TOLE2(si->si_count);
2067da
+	ssi->si_count = CDF_TOLE4(si->si_count);
2067da
 	*count = 0;
2067da
 	maxcount = 0;
2067da
 	*info = NULL;
2067da
-	for (i = 0; i < CDF_TOLE4(si->si_count); i++) {
2067da
-		if (i >= CDF_LOOP_LIMIT) {
2067da
-			DPRINTF(("Unpack summary info loop limit"));
2067da
-			errno = EFTYPE;
2067da
-			return -1;
2067da
-		}
2067da
-		if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset),
2067da
-		    info, count, &maxcount) == -1) {
2067da
+	if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset), info,
2067da
+		count, &maxcount) == -1) 
2067da
 			return -1;
2067da
-		}
2067da
-	}
2067da
 	return 0;
2067da
 }
2067da
 
2067da
-- 
2067da
1.9.2
2067da