Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
3d6c9d1b
Commit
3d6c9d1b
authored
Mar 08, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/wasapi: catch all exception
parent
5823e79f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
WasapiOutputPlugin.cxx
src/output/plugins/wasapi/WasapiOutputPlugin.cxx
+6
-6
No files found.
src/output/plugins/wasapi/WasapiOutputPlugin.cxx
View file @
3d6c9d1b
...
...
@@ -401,9 +401,9 @@ WasapiOutput::DoDisable() noexcept
try
{
thread
->
Finish
();
thread
->
Join
();
}
catch
(
std
::
exception
&
err
)
{
FormatError
(
wasapi_output_domain
,
"exception while disabling: %s"
,
err
.
what
()
);
}
catch
(
...
)
{
LogError
(
std
::
current_exception
()
,
"exception while disabling"
);
}
thread
.
reset
();
client
.
reset
();
...
...
@@ -560,9 +560,9 @@ WasapiOutput::Close() noexcept
Stop
(
*
client
);
}).
get
();
thread
->
CheckException
();
}
catch
(
std
::
exception
&
err
)
{
FormatError
(
wasapi_output_domain
,
"exception while stoping: %s"
,
err
.
what
()
);
}
catch
(
...
)
{
FormatError
(
std
::
current_exception
()
,
"exception while stopping"
);
}
is_started
=
false
;
thread
->
Finish
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment