diff --git a/archive-patches/libdvbsi++-fix-descriptorLenghth.patch b/archive-patches/libdvbsi++-fix-descriptorLenghth.patch deleted file mode 100644 index 2a7202cd..00000000 --- a/archive-patches/libdvbsi++-fix-descriptorLenghth.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/src/descriptor.cpp b/src/descriptor.cpp -index 8c914a9..beaf4d7 100644 ---- a/src/descriptor.cpp -+++ b/src/descriptor.cpp -@@ -17,6 +17,9 @@ Descriptor::Descriptor(const uint8_t * const buffer) - descriptorTag = buffer[0]; - descriptorLength = buffer[1]; - -+ if (!descriptorLength) -+ descriptorLength = 1; -+ - dataBytes.resize(descriptorLength); - memcpy(&dataBytes[0], &buffer[2], descriptorLength); - diff --git a/make/system-libs.mk b/make/system-libs.mk index e2094974..d56f3f66 100644 --- a/make/system-libs.mk +++ b/make/system-libs.mk @@ -73,7 +73,6 @@ $(D)/libupnp: $(ARCHIVE)/libupnp-$(LIBUPNP_VER).tar.bz2 | $(TARGET_DIR) # ----------------------------------------------------------------------------- LIBDVBSI_PATCH = libdvbsi++-content_identifier_descriptor.patch -LIBDVBSI_PATCH += libdvbsi++-fix-descriptorLenghth.patch $(D)/libdvbsi: | $(TARGET_DIR) $(REMOVE)/libdvbsi-.git