diff --git a/archive-patches/libdvbsi++-fix-sectionLength-check.patch b/archive-patches/libdvbsi++-fix-sectionLength-check.patch deleted file mode 100644 index 4d3b7836..00000000 --- a/archive-patches/libdvbsi++-fix-sectionLength-check.patch +++ /dev/null @@ -1,25 +0,0 @@ ->From 47578127ccfed131eb4586ce48a568b7aed0e9b9 Mon Sep 17 00:00:00 2001 -From: [CST] Focus -Date: Thu, 1 Mar 2012 13:37:55 +0400 -Subject: [PATCH] src/time_date_section.cpp: fix sectionLength check - ---- - src/time_date_section.cpp | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/src/time_date_section.cpp b/src/time_date_section.cpp -index 63e24dd..f71ff42 100644 ---- a/src/time_date_section.cpp -+++ b/src/time_date_section.cpp -@@ -15,7 +15,7 @@ - - TimeAndDateSection::TimeAndDateSection(const uint8_t * const buffer) : ShortSection(buffer) - { -- if (sectionLength > 8) { -+ if (sectionLength >= 5) { - utcTimeMjd = UINT16(&buffer[3]); - utcTimeBcd = (buffer[5] << 16) | UINT16(&buffer[6]); - } --- -1.7.1 - diff --git a/make/system-libs.mk b/make/system-libs.mk index 0ce6b741..2b569b95 100644 --- a/make/system-libs.mk +++ b/make/system-libs.mk @@ -65,7 +65,6 @@ $(D)/libdvbsi: | $(TARGET_DIR) $(REMOVE)/libdvbsi++ git clone git://github.com/OpenDMM/libdvbsi-.git $(BUILD_TMP)/libdvbsi++ cd $(BUILD_TMP)/libdvbsi++; \ - $(PATCH)/libdvbsi++-fix-sectionLength-check.patch; \ $(PATCH)/libdvbsi++-content_identifier_descriptor.patch; \ $(CONFIGURE) \ --prefix= \