diff options
author | sr55 <[email protected]> | 2020-10-23 18:34:08 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-10-23 18:34:08 +0100 |
commit | 85bba8d17e5398183ba380225fe6b121a57e75f2 (patch) | |
tree | 220d3eee0be1ca8b5864d721d495b037a661d04c /win/CS/HandBrakeWPF/Instance | |
parent | 5cb1f0252bbd2c789af8b8dee36eff16568ac670 (diff) |
WinGui: Null safetly for last commit.
Diffstat (limited to 'win/CS/HandBrakeWPF/Instance')
-rw-r--r-- | win/CS/HandBrakeWPF/Instance/RemoteInstance.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Instance/RemoteInstance.cs b/win/CS/HandBrakeWPF/Instance/RemoteInstance.cs index 8cbdf014b..e469ef8bb 100644 --- a/win/CS/HandBrakeWPF/Instance/RemoteInstance.cs +++ b/win/CS/HandBrakeWPF/Instance/RemoteInstance.cs @@ -223,7 +223,7 @@ namespace HandBrakeWPF.Instance if (encodeCompleteFired) { this.encodePollTimer?.Stop(); - this.encodePollTimer.Dispose(); + this.encodePollTimer?.Dispose(); return; } |