diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-03-09 18:41:19 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-03-09 18:45:41 +0100 |
commit | 6d0b7a8c38e8283bbe91053cbd650af9a36aa4d4 (patch) | |
tree | c7d2475734c2d23479bce86f56e4b3636f6715f1 /tests | |
parent | 19ce337dc17e5f3b7a2cacd66e139ef5b295223a (diff) |
lib: prevent possible use-after-free in uc_pop()
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/03_bugs/02_array_pop_use_after_free | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/03_bugs/02_array_pop_use_after_free b/tests/03_bugs/02_array_pop_use_after_free new file mode 100644 index 0000000..22f63ff --- /dev/null +++ b/tests/03_bugs/02_array_pop_use_after_free @@ -0,0 +1,14 @@ +When popping an element off an array, especially the last one, the popped +value might have been freed before the refcount was increased later on +function return. + +-- Expect stdout -- +1 +-- End -- + +-- Testcase -- +{% + x = [1]; + print(pop(x), "\n"); // This caused a SIGABRT before the bugfix +%} +-- End -- |