diff options
author | Sage Weil <sage@newdream.net> | 2009-11-02 02:51:15 +0100 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-11-02 02:51:15 +0100 |
commit | 63ff78b25c4b204075b5b98afcac6ad3639d43fe (patch) | |
tree | cfe09a50bb1227d5c83c4515f53636208b0eec09 /fs/ceph/xattr.c | |
parent | ceph: fix intra strip unit length calculation (diff) | |
download | linux-63ff78b25c4b204075b5b98afcac6ad3639d43fe.tar.xz linux-63ff78b25c4b204075b5b98afcac6ad3639d43fe.zip |
ceph: fix uninitialized err variable
Fixes warning
fs/ceph/xattr.c: In function '__build_xattrs':
fs/ceph/xattr.c:353: warning: 'err' may be used uninitialized in this function
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/xattr.c')
-rw-r--r-- | fs/ceph/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/xattr.c b/fs/ceph/xattr.c index 65b3a84bbb2e..1a48a55c5109 100644 --- a/fs/ceph/xattr.c +++ b/fs/ceph/xattr.c @@ -350,7 +350,7 @@ static int __build_xattrs(struct inode *inode) struct ceph_inode_info *ci = ceph_inode(inode); int xattr_version; struct ceph_inode_xattr **xattrs = NULL; - int err; + int err = 0; int i; dout("__build_xattrs() len=%d\n", |