| OLD | NEW |
| 1 /* | 1 /* |
| 2 * pattern.c: Implemetation of the template match compilation and lookup | 2 * pattern.c: Implemetation of the template match compilation and lookup |
| 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 2579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2590 if (style->textMatch != NULL) | 2590 if (style->textMatch != NULL) |
| 2591 xsltFreeCompMatchList(style->textMatch); | 2591 xsltFreeCompMatchList(style->textMatch); |
| 2592 if (style->piMatch != NULL) | 2592 if (style->piMatch != NULL) |
| 2593 xsltFreeCompMatchList(style->piMatch); | 2593 xsltFreeCompMatchList(style->piMatch); |
| 2594 if (style->commentMatch != NULL) | 2594 if (style->commentMatch != NULL) |
| 2595 xsltFreeCompMatchList(style->commentMatch); | 2595 xsltFreeCompMatchList(style->commentMatch); |
| 2596 if (style->namedTemplates != NULL) | 2596 if (style->namedTemplates != NULL) |
| 2597 xmlHashFree(style->namedTemplates, NULL); | 2597 xmlHashFree(style->namedTemplates, NULL); |
| 2598 } | 2598 } |
| 2599 | 2599 |
| OLD | NEW |