From 123e5c1a75a7e6cfe245af05d2954ab126238acf Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 23 Apr 2011 10:31:14 +0200 Subject: s3: Fix Coverity ID 2478, UNINIT Autobuild-User: Volker Lendecke Autobuild-Date: Sat Apr 23 14:11:22 CEST 2011 on sn-devel-104 --- source3/lib/sysquotas_nfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/sysquotas_nfs.c b/source3/lib/sysquotas_nfs.c index eff5874db6c..043ab9f612f 100644 --- a/source3/lib/sysquotas_nfs.c +++ b/source3/lib/sysquotas_nfs.c @@ -91,7 +91,7 @@ int sys_get_nfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp) { - CLIENT *clnt; + CLIENT *clnt = NULL; struct getquota_rslt gq_rslt; struct getquota_args gq_args; const char *mnttype; -- cgit