summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-04-23 10:31:14 +0200
committerVolker Lendecke <vlendec@samba.org>2011-04-23 14:11:22 +0200
commit123e5c1a75a7e6cfe245af05d2954ab126238acf (patch)
treea71f0e447e5cc72fbedee5d757f12f020d8b451f
parent64e7fba1be0d2897c5cee40b41f869bd9e5b272a (diff)
downloadsamba-123e5c1a75a7e6cfe245af05d2954ab126238acf.tar.gz
samba-123e5c1a75a7e6cfe245af05d2954ab126238acf.tar.xz
samba-123e5c1a75a7e6cfe245af05d2954ab126238acf.zip
s3: Fix Coverity ID 2478, UNINIT
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat Apr 23 14:11:22 CEST 2011 on sn-devel-104
-rw-r--r--source3/lib/sysquotas_nfs.c2
1 files changed, 1 insertions, 1 deletions
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;