| OLD | NEW |
| 1 /* | 1 /* |
| 2 * namespaces.c: Implementation of the XSLT namespaces handling | 2 * namespaces.c: Implementation of the XSLT namespaces handling |
| 3 * | 3 * |
| 4 * Reference: | 4 * Reference: |
| 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 | 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 |
| 6 * | 6 * |
| 7 * See Copyright for the status of this software. | 7 * See Copyright for the status of this software. |
| 8 * | 8 * |
| 9 * daniel@veillard.com | 9 * daniel@veillard.com |
| 10 */ | 10 */ |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 * @style: an XSLT stylesheet | 844 * @style: an XSLT stylesheet |
| 845 * | 845 * |
| 846 * Free up the memory used by namespaces aliases | 846 * Free up the memory used by namespaces aliases |
| 847 */ | 847 */ |
| 848 void | 848 void |
| 849 xsltFreeNamespaceAliasHashes(xsltStylesheetPtr style) { | 849 xsltFreeNamespaceAliasHashes(xsltStylesheetPtr style) { |
| 850 if (style->nsAliases != NULL) | 850 if (style->nsAliases != NULL) |
| 851 xmlHashFree((xmlHashTablePtr) style->nsAliases, NULL); | 851 xmlHashFree((xmlHashTablePtr) style->nsAliases, NULL); |
| 852 style->nsAliases = NULL; | 852 style->nsAliases = NULL; |
| 853 } | 853 } |
| OLD | NEW |