From 639a7be451f49f5bda5667a33265f7d471dcfc52 Mon Sep 17 00:00:00 2001 From: Kathy Date: Fri, 18 Jun 2021 12:27:41 +0000 Subject: [PATCH] B2021-067: Null reference crash when printing procedure with all sections set to not applicable. --- PROMS/Volian.Print.Library/PromsPrinter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs index 7beb4203..6e0c217f 100644 --- a/PROMS/Volian.Print.Library/PromsPrinter.cs +++ b/PROMS/Volian.Print.Library/PromsPrinter.cs @@ -2619,6 +2619,7 @@ namespace Volian.Print.Library } private void LoadSectionTree(ItemInfo ii) { + if (ii.Sections == null) return; // B2021-067 crash on null reference foreach (SectionInfo si in ii.Sections) { if (si.IsStepSection)