From 8f4310c7c38fd75c8f4dfb031fcbbd9aad732ac3 Mon Sep 17 00:00:00 2001 From: jsg Date: Mon, 4 May 2015 09:43:51 +0000 Subject: [PATCH] Use the size of the buffer not the pointer in a call to mem_free(). ok miod@ and guenther@ who both pointed out this argument is unused. --- lib/libc/rpc/clnt_raw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index f0a98ade96b..bddc8d94641 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clnt_raw.c,v 1.17 2010/09/01 14:43:34 millert Exp $ */ +/* $OpenBSD: clnt_raw.c,v 1.18 2015/05/04 09:43:51 jsg Exp $ */ /* * Copyright (c) 2010, Oracle America, Inc. @@ -124,7 +124,7 @@ clntraw_create(u_long prog, u_long vers) return (client); fail: - mem_free((caddr_t)clntraw_private, sizeof(clntraw_private)); + mem_free((caddr_t)clntraw_private, sizeof(*clntraw_private)); clntraw_private = NULL; rpc_createerr.cf_stat = RPC_SYSTEMERROR; rpc_createerr.cf_error.re_errno = errno; -- 2.20.1