summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac14
-rw-r--r--src/include/extractor.h4
3 files changed, 12 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 65ef35a..efad82c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,9 @@ Sun Oct 15 19:36:41 CEST 2017
5 Avoid malloc(0) in DEB extractor under certain conditions. 5 Avoid malloc(0) in DEB extractor under certain conditions.
6 Properly initialize 'duration' in ffmpeg extractor. 6 Properly initialize 'duration' in ffmpeg extractor.
7 Fix potential buffer underflow read in DEB extractor. 7 Fix potential buffer underflow read in DEB extractor.
8 Avoid NPE in 'extract' if extracted value has 0 bytes. -CG 8 Avoid NPE in 'extract' if extracted value has 0 bytes.
9 Fix various minor cosmetic issues.
10 Releasing GNU libextractor 1.6. -CG
9 11
10Fri Oct 13 12:30:37 CEST 2017 12Fri Oct 13 12:30:37 CEST 2017
11 Properly check read error in NSF plugin (from signedness confusion) found by Leon Zhao. -CG 13 Properly check read error in NSF plugin (from signedness confusion) found by Leon Zhao. -CG
diff --git a/configure.ac b/configure.ac
index d907955..3fb33b0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,22 +1,22 @@
1# Process this file with autoconf to produce a configure script. 1# Process this file with autoconf to produce a configure script.
2# 2#
3# This file is part of TALER 3# This file is part of GNU libextractor
4# Copyright (C) 2014 GNUnet e.V. 4# Copyright (C) 2003-2017 Christian Grothoff
5# 5#
6# TALER is free software; you can redistribute it and/or modify it under the 6# GNU libextractor is free software; you can redistribute it and/or modify it under the
7# terms of the GNU General Public License as published by the Free Software 7# terms of the GNU General Public License as published by the Free Software
8# Foundation; either version 3, or (at your option) any later version. 8# Foundation; either version 3, or (at your option) any later version.
9# 9#
10# TALER is distributed in the hope that it will be useful, but WITHOUT ANY 10# GNU libextractor is distributed in the hope that it will be useful, but WITHOUT ANY
11# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12# A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13# 13#
14# You should have received a copy of the GNU General Public License along with 14# You should have received a copy of the GNU General Public License along with
15# TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/license> 15# GNU libextractor; see the file COPYING. If not, If not, see <http://www.gnu.org/license>
16# 16#
17# 17#
18AC_PREREQ(2.61) 18AC_PREREQ(2.61)
19AC_INIT([libextractor], [1.5], [bug-libextractor@gnu.org]) 19AC_INIT([libextractor], [1.6], [bug-libextractor@gnu.org])
20AC_CONFIG_HEADERS([config.h]) 20AC_CONFIG_HEADERS([config.h])
21AC_CONFIG_MACRO_DIR([m4]) 21AC_CONFIG_MACRO_DIR([m4])
22AH_TOP([#define _GNU_SOURCE 1]) 22AH_TOP([#define _GNU_SOURCE 1])
@@ -25,7 +25,7 @@ AC_CANONICAL_HOST
25AC_CANONICAL_SYSTEM 25AC_CANONICAL_SYSTEM
26 26
27LIB_VERSION_CURRENT=4 27LIB_VERSION_CURRENT=4
28LIB_VERSION_REVISION=4 28LIB_VERSION_REVISION=5
29LIB_VERSION_AGE=1 29LIB_VERSION_AGE=1
30AC_SUBST(LIB_VERSION_CURRENT) 30AC_SUBST(LIB_VERSION_CURRENT)
31AC_SUBST(LIB_VERSION_REVISION) 31AC_SUBST(LIB_VERSION_REVISION)
diff --git a/src/include/extractor.h b/src/include/extractor.h
index fe0d1ce..0325dc6 100644
--- a/src/include/extractor.h
+++ b/src/include/extractor.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libextractor. 2 This file is part of libextractor.
3 Copyright (C) 2002-2013 Vidyut Samanta and Christian Grothoff 3 Copyright (C) 2002-2017 Vidyut Samanta and Christian Grothoff
4 4
5 libextractor is free software; you can redistribute it and/or modify 5 libextractor is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -35,7 +35,7 @@ extern "C" {
35 * 0.2.6-1 => 0x00020601 35 * 0.2.6-1 => 0x00020601
36 * 4.5.2-0 => 0x04050200 36 * 4.5.2-0 => 0x04050200
37 */ 37 */
38#define EXTRACTOR_VERSION 0x01050001 38#define EXTRACTOR_VERSION 0x01060000
39 39
40#include <stdio.h> 40#include <stdio.h>
41 41