diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2002-01-08 13:15:33 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2002-01-08 13:15:33 +0000 |
| commit | 73c6e53aff56602b6d2a4437018456344274f110 (patch) | |
| tree | c522d80f3c3ca12235055498f8b35c39b15084c6 /encoding.c | |
| parent | 4a85920e23d7434f66fd70f3d9fb3bb3ad7b22bc (diff) | |
| download | android_external_libxml2-73c6e53aff56602b6d2a4437018456344274f110.tar.gz android_external_libxml2-73c6e53aff56602b6d2a4437018456344274f110.tar.bz2 android_external_libxml2-73c6e53aff56602b6d2a4437018456344274f110.zip | |
Paul Keogh pointed out a possibility of segfault on repeted
* encoding.c: Paul Keogh pointed out a possibility of segfault
on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
Closes bug # 68238
Daniel
Diffstat (limited to 'encoding.c')
| -rw-r--r-- | encoding.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1170,6 +1170,7 @@ xmlCleanupEncodingAliases(void) { xmlCharEncodingAliasesNb = 0; xmlCharEncodingAliasesMax = 0; xmlFree(xmlCharEncodingAliases); + xmlCharEncodingAliases = NULL; } /** |
