[model] Tizen
[binary_type] AP
[customer] Tizen Developers
[issue#] N/A
[problem] Need to send pd destroy request even if it is in creating.
[cause] PD cannot be created in short time, in the worst case.
[solution] Send the destroy request to the master even if the pd is not created yet.
[team] HomeTF
[request]
[horizontal_expansion]
Change-Id: Iacd4583c6189705b370df5fa7e01e8418820c625
Name: liblivebox-viewer
Summary: Library for developing the application.
-Version: 0.13.3
+Version: 0.13.4
Release: 1
Group: HomeTF/Livebox
License: Flora License
DbgPrint("pd_created_cb (%s) - %d\n", buf_id, status);
cb(handler, status, cbdata);
- } else if (status == 0) {
+ } else if (handler->is_pd_created) {
DbgPrint("LB_EVENT_PD_CREATED (%s) - %d\n", buf_id, status);
lb_invoke_event_handler(handler, LB_EVENT_PD_CREATED);
}
return LB_STATUS_ERROR_INVALID;
}
- if (!handler->is_pd_created) {
+ if (!handler->is_pd_created && !handler->pd_created_cb) {
ErrPrint("PD is not created\n");
return LB_STATUS_ERROR_INVALID;
}