Skip to content

Commit

Permalink
Merge pull request IntelRealSense#1249 from aangerma/development
Browse files Browse the repository at this point in the history
Fixed bug DSO-7775
  • Loading branch information
dorodnic authored Feb 28, 2018
2 parents 831fe4b + f9b2448 commit 99056c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/concurrency.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,12 @@ class dispatcher
if (_queue.dequeue(&item))
{
cancellable_timer time(this);
item(time);

try
{
item(time);
}
catch(...){}
}

#ifndef ANDROID
Expand Down

0 comments on commit 99056c2

Please sign in to comment.