nfs: Remove redundant NULL check upon kfree()

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Davidlohr Bueso 2010-08-11 12:42:15 -04:00 committed by Trond Myklebust
parent 9b00c64318
commit 5d7ca35a18

View file

@ -2273,8 +2273,7 @@ static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct
out:
if (page)
__free_page(page);
if (locations)
kfree(locations);
kfree(locations);
return status;
}