Fix coverity issue, CID-
1835643.
Change-Id: Id80f2a6a2c8e6da2fcdb6af1ac799dbb5b3547fa
Signed-off-by: Inki Dae <inki.dae@samsung.com>
AutoZoom::~AutoZoom()
{
if (_async_mode) {
- _input_service->streamOff();
- _async_manager->destroy();
+ try {
+ _input_service->streamOff();
+ } catch (const system_error &e) {
+ SINGLEO_LOGE("Failed to stop streaming: %s", e.what());
+ }
+
+ try {
+ _async_manager->destroy();
+ } catch (const system_error &e) {
+ SINGLEO_LOGE("Failed to destroy async manager: %s", e.what());
+ }
}
try {