mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-08 21:42:07 +03:00
Always mark variables as computed even if evaluation fails. This avoids infinite recursion and a stack overflow if a parameter whose evaluation failed is looked up again. Found with afl-fuzz.
9 lines
204 B
XML
9 lines
204 B
XML
<x:stylesheet xmlns:x="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<x:template match="/">
|
|
<x:param name="p" select="$p"/>
|
|
<x:param name="p2" select="$p"/>
|
|
</x:template>
|
|
|
|
</x:stylesheet>
|