diff options
author | 2015-05-04 09:43:51 +0000 | |
---|---|---|
committer | 2015-05-04 09:43:51 +0000 | |
commit | 8f4310c7c38fd75c8f4dfb031fcbbd9aad732ac3 (patch) | |
tree | 6f92fc6b4a567db5d5047e0e85bb7aa6f1b345e1 | |
parent | use the size of the buffer not the pointer in resume_randomness() (diff) | |
download | wireguard-openbsd-8f4310c7c38fd75c8f4dfb031fcbbd9aad732ac3.tar.xz wireguard-openbsd-8f4310c7c38fd75c8f4dfb031fcbbd9aad732ac3.zip |
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.
-rw-r--r-- | lib/libc/rpc/clnt_raw.c | 4 |
1 files 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; |