mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-23 13:09:58 +08:00
Cast to uint32_t pointer, not short. RPC fields are always 32 bit.
This commit is contained in:
parent
d91df270ea
commit
cdf3afded5
@ -289,7 +289,7 @@ call_again:
|
||||
/*
|
||||
* the transaction is the first thing in the out buffer
|
||||
*/
|
||||
(*(u_short *) (cu->cu_outbuf))++;
|
||||
(*(uint32_t *) (cu->cu_outbuf))++;
|
||||
if ((!XDR_PUTLONG (xdrs, (long *) &proc)) ||
|
||||
(!AUTH_MARSHALL (cl->cl_auth, xdrs)) ||
|
||||
(!(*xargs) (xdrs, argsp)))
|
||||
|
Loading…
Reference in New Issue
Block a user