diff options
author | Volker Lendecke <vl@samba.org> | 2011-04-23 10:31:14 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-04-23 14:11:22 +0200 |
commit | 123e5c1a75a7e6cfe245af05d2954ab126238acf (patch) | |
tree | a71f0e447e5cc72fbedee5d757f12f020d8b451f /source3 | |
parent | 64e7fba1be0d2897c5cee40b41f869bd9e5b272a (diff) | |
download | samba-123e5c1a75a7e6cfe245af05d2954ab126238acf.tar.gz samba-123e5c1a75a7e6cfe245af05d2954ab126238acf.tar.bz2 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
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/sysquotas_nfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sysquotas_nfs.c b/source3/lib/sysquotas_nfs.c index eff5874db6..043ab9f612 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; |