Commit fe6e87a4 authored by David Vrabel's avatar David Vrabel

wusb: fix oops when terminating a non-existant reservation

If a reservation was not established, do not try terminating it.
Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
parent 671e470e
......@@ -110,6 +110,9 @@ int wusbhc_rsv_establish(struct wusbhc *wusbhc)
*/
void wusbhc_rsv_terminate(struct wusbhc *wusbhc)
{
uwb_rsv_terminate(wusbhc->rsv);
uwb_rsv_destroy(wusbhc->rsv);
if (wusbhc->rsv) {
uwb_rsv_terminate(wusbhc->rsv);
uwb_rsv_destroy(wusbhc->rsv);
wusbhc->rsv = NULL;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment