Compare commits
4 Commits
release-1.
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6d8e423ef0 | ||
![]() |
2619e001cb | ||
![]() |
76212be904 | ||
![]() |
0a2d3e3644 |
18
ChangeLog
18
ChangeLog
@ -1,3 +1,21 @@
|
|||||||
|
2015-11-21 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
|
* KaxVersion.cpp: in order to enable deterministic builds the
|
||||||
|
KaxCodeDate variable has been set to "Unknown" instead of the date
|
||||||
|
and time of compilation. Patch by Ed Schouten <ed@nuxi.nl>.
|
||||||
|
|
||||||
|
2015-10-20 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
|
* Released v1.4.4.
|
||||||
|
|
||||||
|
* KaxInternalBlock::ReadData(): Fixed an invalid memory
|
||||||
|
access. When reading a block group or a simple block that uses
|
||||||
|
EBML lacing the frame sizes indicated in the lacing weren't
|
||||||
|
checked against the available number of bytes. If the indicated
|
||||||
|
frame size was bigger than the whole block's size the parser would
|
||||||
|
read beyond the end of the buffer resulting in a heap information
|
||||||
|
leak.
|
||||||
|
|
||||||
2015-10-17 Moritz Bunkus <moritz@bunkus.org>
|
2015-10-17 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
* Released v1.4.3.
|
* Released v1.4.3.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([libmatroska], [1.4.3])
|
AC_INIT([libmatroska], [1.4.4])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
@ -9,6 +9,6 @@ AC_ARG_ENABLE([debug],
|
|||||||
AS_HELP_STRING([--enable-debug], [Add -g -DDEBUG to compile flags]),
|
AS_HELP_STRING([--enable-debug], [Add -g -DDEBUG to compile flags]),
|
||||||
[enable_debug="$withval"], [enable_debug=no])
|
[enable_debug="$withval"], [enable_debug=no])
|
||||||
AM_CONDITIONAL([ENABLE_DEBUG], [test "$enable_debug" = yes])
|
AM_CONDITIONAL([ENABLE_DEBUG], [test "$enable_debug" = yes])
|
||||||
PKG_CHECK_MODULES([EBML],[libebml >= 1.3.1])
|
PKG_CHECK_MODULES([EBML],[libebml >= 1.3.3])
|
||||||
AC_CONFIG_FILES([Makefile libmatroska.pc])
|
AC_CONFIG_FILES([Makefile libmatroska.pc])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
START_LIBMATROSKA_NAMESPACE
|
START_LIBMATROSKA_NAMESPACE
|
||||||
|
|
||||||
#define LIBMATROSKA_VERSION 0x010402
|
#define LIBMATROSKA_VERSION 0x010404
|
||||||
|
|
||||||
extern const std::string KaxCodeVersion;
|
extern const std::string KaxCodeVersion;
|
||||||
extern const std::string KaxCodeDate;
|
extern const std::string KaxCodeDate;
|
||||||
|
@ -529,6 +529,8 @@ filepos_t KaxInternalBlock::ReadData(IOCallback & input, ScopeMode ReadFully)
|
|||||||
case LACING_EBML:
|
case LACING_EBML:
|
||||||
SizeRead = LastBufferSize;
|
SizeRead = LastBufferSize;
|
||||||
FrameSize = ReadCodedSizeValue(BufferStart + Mem.GetPosition(), SizeRead, SizeUnknown);
|
FrameSize = ReadCodedSizeValue(BufferStart + Mem.GetPosition(), SizeRead, SizeUnknown);
|
||||||
|
if (!FrameSize || (static_cast<uint32>(FrameSize + SizeRead) > LastBufferSize))
|
||||||
|
throw SafeReadIOCallback::EndOfStreamX(SizeRead);
|
||||||
SizeList[0] = FrameSize;
|
SizeList[0] = FrameSize;
|
||||||
Mem.Skip(SizeRead);
|
Mem.Skip(SizeRead);
|
||||||
LastBufferSize -= FrameSize + SizeRead;
|
LastBufferSize -= FrameSize + SizeRead;
|
||||||
@ -537,6 +539,8 @@ filepos_t KaxInternalBlock::ReadData(IOCallback & input, ScopeMode ReadFully)
|
|||||||
// get the size of the frame
|
// get the size of the frame
|
||||||
SizeRead = LastBufferSize;
|
SizeRead = LastBufferSize;
|
||||||
FrameSize += ReadCodedSizeSignedValue(BufferStart + Mem.GetPosition(), SizeRead, SizeUnknown);
|
FrameSize += ReadCodedSizeSignedValue(BufferStart + Mem.GetPosition(), SizeRead, SizeUnknown);
|
||||||
|
if (!FrameSize || (static_cast<uint32>(FrameSize + SizeRead) > LastBufferSize))
|
||||||
|
throw SafeReadIOCallback::EndOfStreamX(SizeRead);
|
||||||
SizeList[Index] = FrameSize;
|
SizeList[Index] = FrameSize;
|
||||||
Mem.Skip(SizeRead);
|
Mem.Skip(SizeRead);
|
||||||
LastBufferSize -= FrameSize + SizeRead;
|
LastBufferSize -= FrameSize + SizeRead;
|
||||||
|
@ -37,7 +37,11 @@
|
|||||||
|
|
||||||
START_LIBMATROSKA_NAMESPACE
|
START_LIBMATROSKA_NAMESPACE
|
||||||
|
|
||||||
const std::string KaxCodeVersion = "1.4.3";
|
const std::string KaxCodeVersion = "1.4.4";
|
||||||
const std::string KaxCodeDate = __TIMESTAMP__;
|
|
||||||
|
// Up to version 1.4.4 this library exported a build date string. As
|
||||||
|
// this made the build non-reproducible, replace it by a placeholder to
|
||||||
|
// remain binary compatible.
|
||||||
|
const std::string KaxCodeDate = "Unknown";
|
||||||
|
|
||||||
END_LIBMATROSKA_NAMESPACE
|
END_LIBMATROSKA_NAMESPACE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user