Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit fabe186

Browse files
committed
XSI-1177/CA-362931: missing null check.
Signed-off-by: Konstantina Chremmou <[email protected]>
1 parent 2f096ff commit fabe186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XenAdmin/Wizards/PatchingWizard/PatchingWizard_PrecheckPage.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ protected virtual List<CheckGroup> GenerateCommonChecks(List<Host> applicableSer
463463
groups.Add(new CheckGroup(Messages.CHECKING_CANEVACUATE_STATUS, evacuateChecks));
464464
}
465465

466-
var newServerversion = highestNewVersion ?? UpdateAlert.NewServerVersion;
466+
var newServerversion = highestNewVersion ?? UpdateAlert?.NewServerVersion;
467467

468468
if (newServerversion != null)
469469
{

0 commit comments

Comments
 (0)