]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
kmod 24 v24
authorLucas De Marchi <lucas.demarchi@intel.com>
Fri, 24 Feb 2017 07:32:51 +0000 (23:32 -0800)
committerLucas De Marchi <lucas.demarchi@intel.com>
Fri, 24 Feb 2017 07:32:51 +0000 (23:32 -0800)
Makefile.am
NEWS
configure.ac

index 545e90d76ff3c9ba4fada96043717482cd3fd8dc..2a1eb50b246fb2163d924c475a9bd5f00cbfa6c0 100644 (file)
@@ -41,7 +41,7 @@ SED_PROCESS = \
        $(SED_PROCESS)
 
 LIBKMOD_CURRENT=5
-LIBKMOD_REVISION=1
+LIBKMOD_REVISION=2
 LIBKMOD_AGE=3
 
 noinst_LTLIBRARIES = shared/libshared.la
diff --git a/NEWS b/NEWS
index 0b45e5d446a340bbc64e9f1cfba5792b5a3e3a54..d268872d90f5a965a1d093809c1758682bbb655c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+kmod 24
+=======
+
+- Improvements:
+       - Add more information on dependency loop
+
+       - Sanitize use of strcpy and allow to grow from small strings on stack
+         (common case) to bigger strings on heap when needed
+
+- Bug fixes
+       - Fix wrong dependency loops being reported by depmod
+
+       - Fix crashes when reporting dependency loops
+
+       - Fix parsing kernel command line containing quotes
+
+       - Fix leaks on error paths
+
 kmod 23
 =======
 
index 23510c816bfd845bc07773dffa9dc868602ce12e..ca94bf8c3e2188fec23adb97595b65565e202e88 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ(2.64)
 AC_INIT([kmod],
-       [23],
+       [24],
        [linux-modules@vger.kernel.org],
        [kmod],
        [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])