aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-04-05 09:23:44 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-04-05 09:23:44 -0400
commit658e963e933319029d7cb730b2daab27e42feac5 (patch)
treed2b64c82a4577c5d492e11c87c28b60704f45bdb
parent4efdc63337614762baff4a343c89464cf1b0963f (diff)
replace 'try-finally' with 'using' where appropriate
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs9
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs7
2 files changed, 3 insertions, 13 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
index e2ca0986b..4d777081b 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
@@ -1709,14 +1709,9 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
private void Process_Exited(object sender, EventArgs e)
{
- try
- {
- var exitCode = ((Process)sender).ExitCode;
- _logger.LogInformation("Recording post-processing script completed with exit code {ExitCode}", exitCode);
- }
- finally
+ using (var process = (Process)sender)
{
- ((Process)sender).Dispose();
+ _logger.LogInformation("Recording post-processing script completed with exit code {ExitCode}", process.ExitCode);
}
}
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
index 0f2203ca0..4738272be 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
@@ -289,8 +289,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
/// </summary>
private void OnFfMpegProcessExited(Process process, string inputFile)
{
- try
- {
+ using (process) {
_hasExited = true;
_logFileStream?.Dispose();
@@ -315,10 +314,6 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
exitCode)));
}
}
- finally
- {
- process.Dispose();
- }
}
private async void StartStreamingLog(Stream source, Stream target)