If the get_futex_key() call were to fail, the existing code would
try and put_futex_key() prior to returning. This patch makes sure
we only put_futex_key() if get_futex_key() succeeded.
Reported-by: Clark Williams <[email protected]>
Signed-off-by: Darren Hart <[email protected]>
LKML-Reference: <
20090410165005.14342.16973.stgit@Aeon>
Signed-off-by: Thomas Gleixner <[email protected]>
q->key = FUTEX_KEY_INIT;
ret = get_futex_key(uaddr, fshared, &q->key);
if (unlikely(ret != 0))
- goto out;
+ return ret;
retry_private:
*hb = queue_lock(q);