summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--configure.ac2
-rw-r--r--slapi-nis.spec6
3 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index d98c40d..21242fa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+0.42 * Fix a memory leak (internal testing).
0.41 * Log errors evaluating pad expressions in %link rather than
continuing on until we hit an arithmetic exception (#810258).
0.40 * Treat the pad values passed to %link as expressions rather than
diff --git a/configure.ac b/configure.ac
index 3fbcf49..527249b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(slapi-nis,0.41)
+AC_INIT(slapi-nis,0.42)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(foreign)
LT_INIT([disable-static])
diff --git a/slapi-nis.spec b/slapi-nis.spec
index 424e634..a7a3205 100644
--- a/slapi-nis.spec
+++ b/slapi-nis.spec
@@ -5,7 +5,7 @@
%endif
Name: slapi-nis
-Version: 0.41
+Version: 0.42
Release: 1%{?dist}
Summary: NIS Server and Schema Compatibility plugins for Directory Server
Group: System Environment/Daemons
@@ -70,6 +70,10 @@ rm -rf $RPM_BUILD_ROOT
%{_sbindir}/nisserver-plugin-defs
%changelog
+* Tue May 22 2012 Nalin Dahyabhai <nalin@redhat.com> - 0.42-1
+- fix a leak due to us assuming that slapi_mods_add_smod() not taking ownership
+ of an smod along with its contents, when it just keeps the contents
+
* Tue Apr 10 2012 Nalin Dahyabhai <nalin@redhat.com> - 0.41-1
- log errors evaluating pad expressions in %%link rather than continuing on
until we hit an arithmetic exception (#810258)