diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-10-15 21:37:37 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-10-15 21:37:37 +0200 |
commit | bc2a59d25b35b0e88dab8895cf70b4d18d2844fc (patch) | |
tree | 2ea6466a09b8f8a9666a3faa2b314d49afa84444 | |
parent | e340cef5e5e529adda46c9f38e7875b22e8371e3 (diff) |
release v1.6v1.6
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 14 | ||||
-rw-r--r-- | src/include/extractor.h | 4 |
3 files changed, 12 insertions, 10 deletions
@@ -5,7 +5,9 @@ Sun Oct 15 19:36:41 CEST 2017 Avoid malloc(0) in DEB extractor under certain conditions. Properly initialize 'duration' in ffmpeg extractor. Fix potential buffer underflow read in DEB extractor. - Avoid NPE in 'extract' if extracted value has 0 bytes. -CG + Avoid NPE in 'extract' if extracted value has 0 bytes. + Fix various minor cosmetic issues. + Releasing GNU libextractor 1.6. -CG Fri Oct 13 12:30:37 CEST 2017 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 @@ # Process this file with autoconf to produce a configure script. # -# This file is part of TALER -# Copyright (C) 2014 GNUnet e.V. +# This file is part of GNU libextractor +# Copyright (C) 2003-2017 Christian Grothoff # -# TALER is free software; you can redistribute it and/or modify it under the +# GNU libextractor is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 3, or (at your option) any later version. # -# TALER is distributed in the hope that it will be useful, but WITHOUT ANY +# GNU libextractor is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with -# TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/license> +# GNU libextractor; see the file COPYING. If not, If not, see <http://www.gnu.org/license> # # AC_PREREQ(2.61) -AC_INIT([libextractor], [1.5], [bug-libextractor@gnu.org]) +AC_INIT([libextractor], [1.6], [bug-libextractor@gnu.org]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AH_TOP([#define _GNU_SOURCE 1]) @@ -25,7 +25,7 @@ AC_CANONICAL_HOST AC_CANONICAL_SYSTEM LIB_VERSION_CURRENT=4 -LIB_VERSION_REVISION=4 +LIB_VERSION_REVISION=5 LIB_VERSION_AGE=1 AC_SUBST(LIB_VERSION_CURRENT) AC_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 @@ /* This file is part of libextractor. - Copyright (C) 2002-2013 Vidyut Samanta and Christian Grothoff + Copyright (C) 2002-2017 Vidyut Samanta and Christian Grothoff libextractor is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -35,7 +35,7 @@ extern "C" { * 0.2.6-1 => 0x00020601 * 4.5.2-0 => 0x04050200 */ -#define EXTRACTOR_VERSION 0x01050001 +#define EXTRACTOR_VERSION 0x01060000 #include <stdio.h> |