diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-12-16 20:45:08 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-12-16 20:45:08 +0000 |
commit | b92bf4b8867dd738987207f7e49b4b2afb7ebb56 (patch) | |
tree | f44295e77d1b080c21cbe430039bc931686889e6 /lib/libc/rpc | |
parent | 419b1510034f2eb96ca9d5da1005bb39ac015204 (diff) |
De-reference pointer *after* checking if it is NULL.
ok millert@.
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r-- | lib/libc/rpc/clnt_raw.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index 713fcd841af..9c6caffed0d 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: clnt_raw.c,v 1.10 2001/09/15 13:51:00 deraadt Exp $"; +static char *rcsid = "$OpenBSD: clnt_raw.c,v 1.11 2004/12/16 20:45:07 krw Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -88,8 +88,8 @@ clntraw_create(prog, vers) { struct clntraw_private *clp = clntraw_private; struct rpc_msg call_msg; - XDR *xdrs = &clp->xdr_stream; - CLIENT *client = &clp->client_object; + XDR *xdrs; + CLIENT *client; if (clp == NULL) { clp = (struct clntraw_private *)calloc(1, sizeof (*clp)); @@ -97,6 +97,8 @@ clntraw_create(prog, vers) return (NULL); clntraw_private = clp; } + xdrs = &clp->xdr_stream; + client = &clp->client_object; /* * pre-serialize the staic part of the call msg and stash it away */ @@ -136,13 +138,14 @@ clntraw_call(h, proc, xargs, argsp, xresults, resultsp, timeout) struct timeval timeout; { struct clntraw_private *clp = clntraw_private; - XDR *xdrs = &clp->xdr_stream; + XDR *xdrs; struct rpc_msg msg; enum clnt_stat status; struct rpc_err error; if (clp == NULL) return (RPC_FAILED); + xdrs = &clp->xdr_stream; call_again: /* * send request @@ -219,13 +222,14 @@ clntraw_freeres(cl, xdr_res, res_ptr) caddr_t res_ptr; { struct clntraw_private *clp = clntraw_private; - XDR *xdrs = &clp->xdr_stream; + XDR *xdrs; bool_t rval; if (clp == NULL) { rval = (bool_t) RPC_FAILED; return (rval); } + xdrs = &clp->xdr_stream; xdrs->x_op = XDR_FREE; return ((*xdr_res)(xdrs, res_ptr)); } |