1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

Cleanups before 2.8.0-rc2

new symbols, a missing comment and a fix on symbol release
This commit is contained in:
Daniel Veillard 2012-05-21 11:16:12 +08:00
parent 978ff224b2
commit ee8f1d4cda
3 changed files with 8 additions and 1 deletions

3
dict.c
View File

@ -150,6 +150,9 @@ unsigned int rand_seed = 0;
* Do the dictionary mutex initialization.
* this function is not thread safe, initialization should
* preferably be done once at startup
*
* Returns 0 if initialization was already done, and 1 if that
* call led to the initialization
*/
int xmlInitializeDict(void) {
if (xmlDictInitialized)

View File

@ -1741,8 +1741,9 @@
<symbol file="globals">xmlStructuredErrorContext</symbol>
<symbol file="xinclude">xmlXIncludeProcessTreeFlagsData</symbol>
</release>
<release version="2.7.9">
<release version="2.8.0">
<symbol file="xmlreader">xmlTextReaderRelaxNGValidateCtxt</symbol>
<symbol file="tree">xmlBufferDetach</symbol>
<symbol file="dict">xmlInitializeDict</symbol>
</release>
</symbols>

View File

@ -2239,5 +2239,8 @@ LIBXML2_2.8.0 {
# tree
xmlBufferDetach;
# dict
xmlInitializeDict;
} LIBXML2_2.7.4;