If a failure occurs before aaxcProcesser is init'd, this will give a null ref exception which can obscure the actual exception that we want to be visible

This commit is contained in:
Robert McRackan 2021-06-29 13:08:21 -04:00
parent f3a746a852
commit ef2adfd474

View File

@ -273,7 +273,7 @@ namespace AaxDecrypter
public void Cancel() public void Cancel()
{ {
aaxcProcesser.Cancel(); aaxcProcesser?.Cancel();
} }
} }
} }