c17390da2f
* Released v1.3.3. * EbmlMaster::Read(): When the parser encountered a deeply nested element with an infinite size then a following element of an upper level was not propagated correctly. Instead the element with the infinite size was added into the EBML element tree a second time resulting in memory access after freeing it and multiple attempts to free the same memory address during destruction. Fixes the issue reported as Cisco TALOS-CAN-0037. * EbmlElement::ReadCodedSizeValue(): Fixed an invalid memory access. When reading a EBML variable length integer value a read access beyond the end of the available buffer was possible if fewer bytes were available than indicated by the first byte resulting in a heap information leak. * EbmlUnicodeString::UpdateFromUTF8(): Fixed an invalid memory access. When reading from a UTF-8 string in which the length indicated by a UTF-8 character's first byte exceeds the string's actual number of bytes the parser would access beyond the end of the string resulting in a heap information leak. Fixes the issue reported as Cisco TALOS-CAN-0036.
21 lines
484 B
Makefile
21 lines
484 B
Makefile
# $NetBSD: Makefile,v 1.39 2015/10/25 09:44:09 wiz Exp $
|
|
|
|
DISTNAME= libebml-1.3.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://dl.matroska.org/downloads/libebml/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= salo@NetBSD.org
|
|
HOMEPAGE= http://sourceforge.net/projects/ebml/
|
|
COMMENT= Extensible Binary Meta Language support library
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
PKGCONFIG_OVERRIDE= libebml.pc.in
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|