[stubs] Added XML_SetHashSalt stub

It't required to fix the problem created by the fix for CVE-2012-0876
This is a great example of a solution that creates more problems than
it solves.
This commit is contained in:
Slava Monich 2015-12-14 12:23:12 +03:00
parent e3fc9982c6
commit c9ec2cb51e

View file

@ -66,6 +66,9 @@
f(void, XML_ParserFree, \
(XML_Parser parser), \
(parser), (void)0) \
f(int, XML_SetHashSalt, \
(XML_Parser parser, unsigned long salt), \
(parser, salt), 0) \
f(enum XML_Status, XML_Parse, \
(XML_Parser parser, const char* s, int len, int isFinal), \
(parser, s, len, isFinal), XML_STATUS_ERROR)