File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ using namespace std;
85
85
86
86
#define API_VERSION_NUMBER_MAJOR 2
87
87
#define API_VERSION_NUMBER_MINOR 0
88
- #define API_VERSION_NUMBER_PATCH 1
88
+ #define API_VERSION_NUMBER_PATCH 0
89
89
90
90
static bool isCecEnabled = false ;
91
91
static bool isResCacheUpdated = false ;
@@ -4759,12 +4759,7 @@ namespace WPEFramework {
4759
4759
try
4760
4760
{
4761
4761
LOGWARN (" creating worker thread for initAudioPortsWorker " );
4762
- std::thread audioPortInitThread;
4763
- try {
4764
- audioPortInitThread = std::thread (initAudioPortsWorker);
4765
- } catch (const std::system_error& e) {
4766
- LOGERR (" Failed to start initAudioPortsWorker: %s" , e.what ());
4767
- }
4762
+ std::thread audioPortInitThread = std::thread (initAudioPortsWorker);
4768
4763
audioPortInitThread.detach ();
4769
4764
}
4770
4765
catch (const std::system_error& e)
You can’t perform that action at this time.
0 commit comments