| OLD | NEW |
| 1 /* | 1 /* |
| 2 * attributes.c: Implementation of the XSLT attributes handling | 2 * attributes.c: Implementation of the XSLT attributes 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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 * | 1231 * |
| 1232 * Free up the memory used by attribute sets | 1232 * Free up the memory used by attribute sets |
| 1233 */ | 1233 */ |
| 1234 void | 1234 void |
| 1235 xsltFreeAttributeSetsHashes(xsltStylesheetPtr style) { | 1235 xsltFreeAttributeSetsHashes(xsltStylesheetPtr style) { |
| 1236 if (style->attributeSets != NULL) | 1236 if (style->attributeSets != NULL) |
| 1237 xmlHashFree((xmlHashTablePtr) style->attributeSets, | 1237 xmlHashFree((xmlHashTablePtr) style->attributeSets, |
| 1238 (xmlHashDeallocator) xsltFreeAttrSet); | 1238 (xmlHashDeallocator) xsltFreeAttrSet); |
| 1239 style->attributeSets = NULL; | 1239 style->attributeSets = NULL; |
| 1240 } | 1240 } |
| OLD | NEW |