mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fix segfault caused by empty condition in ternary
Reported by https://hackerone.com/jpenalbae
This commit is contained in:
@@ -1362,6 +1362,10 @@ codegen(codegen_scope *s, node *tree, int val)
|
||||
int pos1, pos2;
|
||||
node *e = tree->cdr->cdr->car;
|
||||
|
||||
if (!tree->car) {
|
||||
codegen(s, e, val);
|
||||
return;
|
||||
}
|
||||
switch ((intptr_t)tree->car->car) {
|
||||
case NODE_TRUE:
|
||||
case NODE_INT:
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
##
|
||||
# Codegen tests
|
||||
|
||||
assert('empty condition in ternary expression parses correctly') do
|
||||
assert_equal () ? 1 : 2, 2
|
||||
end
|
||||
Reference in New Issue
Block a user