XML hashing updated
This commit is contained in:
parent
b927b467a3
commit
40ffe7d7f8
@ -115,6 +115,11 @@ void WXEXTEND_API wxXmlHashNode(_In_ HCRYPTHASH hash, const wxXmlNode *node)
|
|||||||
// Hash the children.
|
// Hash the children.
|
||||||
for (wxXmlNode *child = node->GetChildren(); child; child = child->GetNext())
|
for (wxXmlNode *child = node->GetChildren(); child; child = child->GetNext())
|
||||||
wxXmlHashNode(hash, child);
|
wxXmlHashNode(hash, child);
|
||||||
}
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
wxFAIL_MSG(wxT("unsupported XML node type"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user