Commit c18ac66a authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

contrib: update libebml to 1.3.2

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 59555853
b42d198611e480a4938fe95b920f6ee6ca37453f9551990e4310ed82651f93284f1de1d871357b6280219634bbbf6a98d4ac988e25e7bd7b5bbf5c0ba5766334 libebml-1.3.1.tar.bz2 b40ead62bf0f3768d0e669b96ee5b059f43eb1d77d35c8b7b738cd4b727195f61a681ba87f1fa0bf9844a93807e40442db8f8d549e76922b75880c83fd2678d3 libebml-1.3.2.tar.bz2
--- libebml/src/EbmlElement.cpp 2015-08-21 12:58:03.738589700 +0200
+++ libebml/src/EbmlElement.cpp.eof 2015-08-21 12:55:18.972736500 +0200
@@ -417,7 +417,10 @@
bFound = false;
break;
}
- ReadSize += DataStream.read(&PossibleIdNSize[SizeIdx++], 1);
+ if( DataStream.read( &PossibleIdNSize[SizeIdx++], 1 ) == 0 ) {
+ return NULL; // no more data ?
+ }
+ ReadSize++;
PossibleSizeLength++;
}
# ebml # ebml
EBML_VERSION := 1.3.1 EBML_VERSION := 1.3.2
EBML_URL := http://dl.matroska.org/downloads/libebml/libebml-$(EBML_VERSION).tar.bz2 EBML_URL := http://dl.matroska.org/downloads/libebml/libebml-$(EBML_VERSION).tar.bz2
#EBML_URL := $(CONTRIB_VIDEOLAN)/libebml-$(EBML_VERSION).tar.bz2 #EBML_URL := $(CONTRIB_VIDEOLAN)/libebml-$(EBML_VERSION).tar.bz2
...@@ -11,7 +11,6 @@ $(TARBALLS)/libebml-$(EBML_VERSION).tar.bz2: ...@@ -11,7 +11,6 @@ $(TARBALLS)/libebml-$(EBML_VERSION).tar.bz2:
libebml: libebml-$(EBML_VERSION).tar.bz2 .sum-ebml libebml: libebml-$(EBML_VERSION).tar.bz2 .sum-ebml
$(UNPACK) $(UNPACK)
$(APPLY) $(SRC)/ebml/eof.patch
$(MOVE) $(MOVE)
# libebml requires exceptions # libebml requires exceptions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment