Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 671e470e authored by David Vrabel's avatar David Vrabel
Browse files

uwb: fix oops when terminating an already terminated reservation



Calling uwb_rsv_terminate() on a reservation already in UWB_RSV_STATE_NONE
should do nothing.

Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
parent 5b37717a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -669,6 +669,7 @@ void uwb_rsv_terminate(struct uwb_rsv *rsv)

	mutex_lock(&rc->rsvs_mutex);

	if (rsv->state != UWB_RSV_STATE_NONE)
		uwb_rsv_set_state(rsv, UWB_RSV_STATE_NONE);

	mutex_unlock(&rc->rsvs_mutex);