mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 13:38:01 +00:00
vos: fix code to not triple-negate
!!! is !. just write it that way. Reviewed-on: http://gerrit.openafs.org/6252 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementix.org> (cherry picked from commit 44045af35a6ae44880655115685e0755d6a0c828) Change-Id: I646387f30c178ad512decd507925408183f83894 Reviewed-on: http://gerrit.openafs.org/6329 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
parent
e9def7311e
commit
49da70a86e
@ -3822,7 +3822,7 @@ UV_ReleaseVolume(afs_uint32 afromvol, afs_uint32 afromserver,
|
||||
nservers + 1);
|
||||
results.manyResults_val =
|
||||
(afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1);
|
||||
if (!replicas || !times || !!!results.manyResults_val || !toconns)
|
||||
if (!replicas || !times || !results.manyResults_val || !toconns)
|
||||
ONERROR0(ENOMEM,
|
||||
"Failed to create transaction on the release clone\n");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user