diff options
author | Raghavendra G <rgowdapp@redhat.com> | 2014-09-09 11:33:14 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-09-09 20:29:42 -0700 |
commit | ed4a754f7b6b103b23b2c3e29b8b749cd9db89f3 (patch) | |
tree | 36bb8dfe96e0fabc926f10e9f1a485848173b036 /cli | |
parent | b3314ea6e820fb659255d0e6e9a32ea259b7526d (diff) |
cluster/dht: fix memory corruption in locking api.
<man 3 qsort>
The contents of the array are sorted in ascending order
according to a comparison function pointed to by compar, which is
called with two arguments that "point to the objects being
compared".
</man 3 qsort>
qsort passes "pointers to members of the array" to comparision
function. Since the members of the array happen to be (dht_lock_t *),
the arguments passed to dht_lock_request_cmp are of type (dht_lock_t
**). Previously we assumed them to be of type (dht_lock_t *), which
resulted in memory corruption.
Change-Id: Iee0758704434beaff3c3a1ad48d549cbdc9e1c96
BUG: 1139506
Signed-off-by: Raghavendra G <rgowdapp@redhat.com>
Reviewed-on: http://review.gluster.org/8659
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'cli')
0 files changed, 0 insertions, 0 deletions