From c9a08768cc89bdee0ddd3f1d3fac3a69c81d8677 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Mon, 15 May 2017 13:19:06 -0400 Subject: [PATCH] Fixed typo in memory leaks patch (bz 1448128) Signed-off-by: Steve Dickson --- rpcbind-0.2.5-rc1.patch | 2 +- rpcbind.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rpcbind-0.2.5-rc1.patch b/rpcbind-0.2.5-rc1.patch index 93ef61d..6dbfff3 100644 --- a/rpcbind-0.2.5-rc1.patch +++ b/rpcbind-0.2.5-rc1.patch @@ -114,7 +114,7 @@ index 4c744fe..e926cdc 100644 - return (TRUE); + +done: -+ if (!svc_freeargs(xprt, (xdrproc_t) xdr_pmap, (char *)NULL)) { ++ if (!svc_freeargs(xprt, (xdrproc_t) xdr_void, (char *)NULL)) { + if (debugging) { + (void) xlog(LOG_DEBUG, "unable to free arguments\n"); + if (doabort) { diff --git a/rpcbind.spec b/rpcbind.spec index 368c837..04e5ea2 100644 --- a/rpcbind.spec +++ b/rpcbind.spec @@ -1,6 +1,6 @@ Name: rpcbind Version: 0.2.4 -Release: 6.rc1%{?dist} +Release: 7.rc1%{?dist} Summary: Universal Addresses to RPC Program Number Mapper Group: System Environment/Daemons License: BSD @@ -139,6 +139,9 @@ fi %{_tmpfilesdir}/%{name}.conf %changelog +* Mon May 15 2017 Steve Dickson - 0.2.4-7.rc1 +- Fixed typo in memory leaks patch (bz 1448128) + * Thu May 11 2017 Steve Dickson - 0.2.4-6.rc1 - Fixed memory leaks (bz 1448128)