We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc6799d commit 76c3920Copy full SHA for 76c3920
exch/ews/serialization.cpp
@@ -1472,7 +1472,8 @@ void mConvertIdResponseMessage::serialize(tinyxml2::XMLElement* xml) const
1472
{
1473
mResponseMessageType::serialize(xml);
1474
tinyxml2::XMLElement* altid = XMLDUMPM(AlternateId);
1475
- altid->SetAttribute("xsi:type", "t:AlternateIdType");
+ if (altid != nullptr)
1476
+ altid->SetAttribute("xsi:type", "t:AlternateIdType");
1477
}
1478
1479
mCopyFolderRequest::mCopyFolderRequest(const tinyxml2::XMLElement* xml) :
0 commit comments