summaryrefslogtreecommitdiffstats
path: root/lib/libc/xdr/xdr_mem.c
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2016-12-03 17:17:42 +0000
committerngie <ngie@FreeBSD.org>2016-12-03 17:17:42 +0000
commitde9c1e498c9083787fed20b89b77dce7f67d668e (patch)
tree4090ad0dc9bdc4f6d8760d071cac4a3cb7f3b346 /lib/libc/xdr/xdr_mem.c
parentbf027d30f65946c403cff801d75f469e39fa3e48 (diff)
downloadFreeBSD-src-de9c1e498c9083787fed20b89b77dce7f67d668e.zip
FreeBSD-src-de9c1e498c9083787fed20b89b77dce7f67d668e.tar.gz
MFC r297790:
r297790 (by pfg): libc: replace 0 with NULL for pointers. While here also cleanup some surrounding code; particularly drop some malloc() casts. Found with devel/coccinelle.
Diffstat (limited to 'lib/libc/xdr/xdr_mem.c')
-rw-r--r--lib/libc/xdr/xdr_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/xdr/xdr_mem.c b/lib/libc/xdr/xdr_mem.c
index 70f79c6..ec15bb8 100644
--- a/lib/libc/xdr/xdr_mem.c
+++ b/lib/libc/xdr/xdr_mem.c
@@ -239,7 +239,7 @@ xdrmem_inline_aligned(xdrs, len)
XDR *xdrs;
u_int len;
{
- int32_t *buf = 0;
+ int32_t *buf = NULL;
if (xdrs->x_handy >= len) {
xdrs->x_handy -= len;
OpenPOWER on IntegriCloud