diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-24 19:44:54 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-24 19:44:54 -0700 |
commit | 1c1685861e0d304f60f0669c6dbd5005349262e4 (patch) | |
tree | 191fc885e0b3751447b94e4fca8d8e36485dd839 | |
parent | d31b99878a2c7ed0fb52a88cb23cd7716d1ea40a (diff) | |
download | txr-1c1685861e0d304f60f0669c6dbd5005349262e4.tar.gz txr-1c1685861e0d304f60f0669c6dbd5005349262e4.tar.bz2 txr-1c1685861e0d304f60f0669c6dbd5005349262e4.zip |
txr: stack protection in pattern language.
* txr.c (do_match_line, match_files): call gc_stack_check on
entry.
* tests/012/stack2.txr: New file.
* tests/012/stack2.expected: New file.
-rw-r--r-- | match.c | 4 | ||||
-rw-r--r-- | tests/012/stack2.expected | 1 | ||||
-rw-r--r-- | tests/012/stack2.txr | 8 |
3 files changed, 13 insertions, 0 deletions
@@ -1533,6 +1533,8 @@ static val do_match_line(match_line_ctx *c) { val lfe_save = set_last_form_evaled(nil); + gc_stack_check(); + while (c->specline) { val elem = first(c->specline); @@ -4616,6 +4618,8 @@ static val match_files(match_files_ctx c) { gc_hint(c.data); + gc_stack_check(); + for (; c.spec; c.spec = rest(c.spec), c.data = rest(c.data), c.data_lineno = plus(c.data_lineno, one)) diff --git a/tests/012/stack2.expected b/tests/012/stack2.expected new file mode 100644 index 00000000..cad99e12 --- /dev/null +++ b/tests/012/stack2.expected @@ -0,0 +1 @@ +caught diff --git a/tests/012/stack2.txr b/tests/012/stack2.txr new file mode 100644 index 00000000..df9e209a --- /dev/null +++ b/tests/012/stack2.txr @@ -0,0 +1,8 @@ +@(define recur ()) +@(recur) +@(end) +@(try) +@(recur) +@(catch stack-overflow (arg)) +@(do (put-line "caught")) +@(end) |