version 0.40 v0.40
authorAntoine Jacquet <royale@zerezo.com>
Fri, 29 Feb 2008 23:00:00 +0000 (00:00 +0100)
committerAntoine Jacquet <royale@zerezo.com>
Fri, 29 Feb 2008 23:00:00 +0000 (00:00 +0100)
* fix segfault on "fapg --help" (patch by Dwayne Litzenberger)

ChangeLog
README
configure
configure.in
fapg.c

index c5f049b..05a8d68 100644 (file)
--- 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 (file)
--- 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
 
index 638416a..17cd1af 100755 (executable)
--- 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
index edf19be..adb7874 100644 (file)
@@ -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 (file)
--- 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;