In the previous key leak fix for the other error
paths, I meant to unify all of them to the same
place, but used the wrong label, which I noticed
when doing the merge into wireless-next. Fix it.
Fixes: d097ae01ebd4 ("wifi: mac80211: fix potential key leak")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
         */
        if (ieee80211_key_identical(sdata, old_key, key)) {
                ret = -EALREADY;
-               goto unlock;
+               goto out;
        }
 
        key->local = sdata->local;
 
  out:
        ieee80211_key_free_unused(key);
- unlock:
        mutex_unlock(&sdata->local->key_mtx);
 
        return ret;