diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-24 17:03:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-24 17:03:16 +0000 |
commit | ee3ec4ce820255c196ea7ad6262d51c1ad9fad8c (patch) | |
tree | 0aaf197e0cb18c089542c4eb83691cc0d2d629aa /lib/libc/rpc/clnt_tcp.c | |
parent | b91dd5946bd82569410ea68ec726afa2fade0ee5 (diff) |
uninit variables
Diffstat (limited to 'lib/libc/rpc/clnt_tcp.c')
-rw-r--r-- | lib/libc/rpc/clnt_tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/clnt_tcp.c b/lib/libc/rpc/clnt_tcp.c index 929f49713cf..441b1b91978 100644 --- a/lib/libc/rpc/clnt_tcp.c +++ b/lib/libc/rpc/clnt_tcp.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: clnt_tcp.c,v 1.16 1998/05/19 06:58:51 deraadt Exp $"; +static char *rcsid = "$OpenBSD: clnt_tcp.c,v 1.17 2000/08/24 17:03:15 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -117,7 +117,7 @@ clnttcp_create(raddr, prog, vers, sockp, sendsz, recvsz) u_int recvsz; { CLIENT *h; - register struct ct_data *ct; + register struct ct_data *ct = NULL; struct timeval now; struct rpc_msg call_msg; |