B2020-103: crash on null reference when cancel from create new section
This commit is contained in:
parent
251f32815b
commit
ad61082828
@ -2803,7 +2803,7 @@ namespace Volian.Controls.Library
|
|||||||
// B2020-087 the config for SubSection_Edit was sometimes set even when there wasn't any subsections,
|
// B2020-087 the config for SubSection_Edit was sometimes set even when there wasn't any subsections,
|
||||||
// so make sure it's cleared if there are no existing subsections
|
// so make sure it's cleared if there are no existing subsections
|
||||||
SectionConfig sc = _LastItemInfo.MyConfig as SectionConfig;
|
SectionConfig sc = _LastItemInfo.MyConfig as SectionConfig;
|
||||||
if (sc.SubSection_Edit == "Y" && _LastItemInfo.Sections == null)
|
if (sc != null && sc.SubSection_Edit == "Y" && _LastItemInfo.Sections == null)
|
||||||
{
|
{
|
||||||
sc.SubSection_Edit = null;
|
sc.SubSection_Edit = null;
|
||||||
using (Section mysect = Section.Get(_LastItemInfo.ItemID))
|
using (Section mysect = Section.Get(_LastItemInfo.ItemID))
|
||||||
@ -3204,7 +3204,7 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
// B2020-087 if we deleted the last sub section, then clear the SubSection_Edit in the parent's config
|
// B2020-087 if we deleted the last sub section, then clear the SubSection_Edit in the parent's config
|
||||||
SectionConfig sc = pii.MyConfig as SectionConfig;
|
SectionConfig sc = pii.MyConfig as SectionConfig;
|
||||||
if (sc.SubSection_Edit == "Y" && pii.Sections == null)
|
if (sc != null && sc.SubSection_Edit == "Y" && pii.Sections == null) // B2020-103: Added null check
|
||||||
{
|
{
|
||||||
sc.SubSection_Edit = null;
|
sc.SubSection_Edit = null;
|
||||||
using (Section mysect = Section.Get(pii.ItemID))
|
using (Section mysect = Section.Get(pii.ItemID))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user