diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-09-26 00:58:41 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2021-10-02 21:51:10 +0200 |
commit | 8e70bf27fd20cc17e87150327a640e546bfbee64 (patch) | |
tree | 07b35bd98f1ecf6beb8010485f14b5f17ccb6591 /fs/nfsd/nfs4proc.c | |
parent | NFSD: simplify struct nfsfh (diff) | |
download | linux-8e70bf27fd20cc17e87150327a640e546bfbee64.tar.xz linux-8e70bf27fd20cc17e87150327a640e546bfbee64.zip |
NFSD: Initialize pointer ni with NULL and not plain integer 0
Pointer ni is being initialized with plain integer zero. Fix
this by initializing with NULL.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4proc.c')
-rw-r--r-- | fs/nfsd/nfs4proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index 3f7e59ec4e32..3dc40c1d32bc 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c @@ -1178,7 +1178,7 @@ extern void nfs_sb_deactive(struct super_block *sb); static __be32 nfsd4_ssc_setup_dul(struct nfsd_net *nn, char *ipaddr, struct nfsd4_ssc_umount_item **retwork, struct vfsmount **ss_mnt) { - struct nfsd4_ssc_umount_item *ni = 0; + struct nfsd4_ssc_umount_item *ni = NULL; struct nfsd4_ssc_umount_item *work = NULL; struct nfsd4_ssc_umount_item *tmp; DEFINE_WAIT(wait); |