]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/rpcbind/0006-pmapproc_dump-Fixed-typo-in-memory-leak-patch.patch
rpcbind: Backport fixes to memory leak security fix
[coffee/buildroot.git] / package / rpcbind / 0006-pmapproc_dump-Fixed-typo-in-memory-leak-patch.patch
1 From d3f1f55e50e3c436a2ea91d60da84c3a94e6c53f Mon Sep 17 00:00:00 2001
2 From: Steve Dickson <steved@redhat.com>
3 Date: Thu, 18 Jan 2018 17:41:49 +0000
4 Subject: [PATCH] pmapproc_dump: Fixed typo in memory leak patch
5
6 commit 7ea36eee introduce a typo that caused
7 NIS (aka ypbind) to fail.
8
9 Signed-off-by: Steve Dickson <steved@redhat.com>
10 (cherry picked from commit c49a7ea639eb700823e174fd605bbbe183e229aa)
11 Signed-off-by: Ed Blake <ed.blake@sondrel.com>
12 ---
13  src/pmap_svc.c | 2 +-
14  1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/src/pmap_svc.c b/src/pmap_svc.c
17 index bb57b05..ffca7df 100644
18 --- a/src/pmap_svc.c
19 +++ b/src/pmap_svc.c
20 @@ -384,7 +384,7 @@ pmapproc_dump(struct svc_req *rqstp /*__unused*/, SVCXPRT *xprt)
21         }
22  
23  done:
24 -       if (!svc_freeargs(xprt, (xdrproc_t) xdr_pmap, (char *)NULL)) {
25 +       if (!svc_freeargs(xprt, (xdrproc_t) xdr_void, (char *)NULL)) {
26                 if (debugging) {
27                         (void) xlog(LOG_DEBUG, "unable to free arguments\n");
28                         if (doabort) {
29 -- 
30 2.11.0
31