Skip to content
Snippets Groups Projects
Commit fe6e87a4 authored by David Vrabel's avatar David Vrabel
Browse files

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
No related branches found
No related tags found
No related merge requests found
...@@ -110,6 +110,9 @@ int wusbhc_rsv_establish(struct wusbhc *wusbhc) ...@@ -110,6 +110,9 @@ int wusbhc_rsv_establish(struct wusbhc *wusbhc)
*/ */
void wusbhc_rsv_terminate(struct wusbhc *wusbhc) void wusbhc_rsv_terminate(struct wusbhc *wusbhc)
{ {
uwb_rsv_terminate(wusbhc->rsv); if (wusbhc->rsv) {
uwb_rsv_destroy(wusbhc->rsv); uwb_rsv_terminate(wusbhc->rsv);
uwb_rsv_destroy(wusbhc->rsv);
wusbhc->rsv = NULL;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment