diff options
author | Amar Tumballi <amar@gluster.com> | 2010-07-02 04:55:28 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-07-02 05:17:03 -0700 |
commit | 2f15ffd6b5beef9abd501c594bc3cb38c2683f77 (patch) | |
tree | 107176560e1a97c42f3535380ef49d4dee3b0cd6 /xlators/mount | |
parent | 3dc79ca8e6119f5ff61058cc87f9a4fc251017ef (diff) |
NULL dereference fixes in code base after running with 'clang'
* 212 logical (NULL deref/divide by zero) errors reduced to 28
(27 of them in contrib/ and lex part of codebase, 1 is invalid)
* 11 API errors reduced to 0
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 966 (NULL check for avoiding NULL dereferencing of pointers..)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=966
Diffstat (limited to 'xlators/mount')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 483c6c9fec5..096ca93df58 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -1364,9 +1364,8 @@ fuse_readlink (xlator_t *this, fuse_in_header_t *finh, void *msg) if ((state->loc.inode == NULL) || (ret < 0)) { gf_log ("glusterfs-fuse", GF_LOG_WARNING, - "%"PRIu64" READLINK %s/%"PRId64" (fuse_loc_fill() returned NULL inode)", - finh->unique, state->loc.path, - state->loc.inode->ino); + "%"PRIu64" READLINK %s (fuse_loc_fill() returned NULL inode)", + finh->unique, state->loc.path); send_fuse_err (this, finh, ENOENT); free_state (state); return; @@ -3719,9 +3718,9 @@ cleanup_exit: if (priv) { GF_FREE (priv->mount_point); close (priv->fd); + close (priv->fuse_dump_fd); + GF_FREE (priv); } - GF_FREE (priv); - close (priv->fuse_dump_fd); return -1; } |