From: Antoine Jacquet Date: Fri, 29 Feb 2008 23:00:00 +0000 (+0100) Subject: version 0.40 X-Git-Tag: v0.40 X-Git-Url: http://royale.zerezo.com/git/?p=FAPG;a=commitdiff_plain;h=442f07ffb769d23879449cd03fd7faa5a8c1f71e;hp=dfbf4f525560afb358cec09a9411712ded235b05 version 0.40 * fix segfault on "fapg --help" (patch by Dwayne Litzenberger) --- diff --git a/ChangeLog b/ChangeLog index c5f049b..05a8d68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Change log file for FAPG +version 0.40 (2008-03-01) + * fix segfault on "fapg --help" (patch by Dwayne Litzenberger) + version 0.39 (2008-02-13) (by Sebastian Pipping) * XSPF support added * now using Autoconf/Automake diff --git a/README b/README index 7122be6..0935d74 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -FAPG 0.39 (Fast Audio Playlist Generator) +FAPG 0.40 (Fast Audio Playlist Generator) site: http://royale.zerezo.com/fapg/ mail: royale@zerezo.com diff --git a/configure b/configure index 638416a..17cd1af 100755 --- a/configure +++ b/configure @@ -2088,7 +2088,7 @@ fi # Define the identity of the package. PACKAGE=fapg - VERSION=0.39 + VERSION=0.40 cat >>confdefs.h <<_ACEOF diff --git a/configure.in b/configure.in index edf19be..adb7874 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) AC_INIT(fapg.c) -AM_INIT_AUTOMAKE(fapg, 0.39) +AM_INIT_AUTOMAKE(fapg, 0.40) AC_PROG_INSTALL AC_PROG_CC diff --git a/fapg.c b/fapg.c index 58f3f20..df022cf 100644 --- a/fapg.c +++ b/fapg.c @@ -525,7 +525,8 @@ void parse_options(int argc, char **argv) {"recursive", no_argument, NULL, 'r'}, {"stdin", no_argument, NULL, 's'}, {"windows", no_argument, NULL, 'w'}, - {"exclude", required_argument, NULL, 'x'} + {"exclude", required_argument, NULL, 'x'}, + {NULL, 0, NULL, 0} }; int c; int option_index = 0;