diff options
author | Björn Gustavsson <[email protected]> | 2013-02-04 13:53:50 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-04 13:53:50 +0100 |
commit | 85793776a01d283d83305ef9e5b7e9566af68b34 (patch) | |
tree | d2b61efd8b23b1a602486afb25ef5fd0a1817a7a /lib/compiler/src | |
parent | 9b5dc27be0baab15d1bc8b583305205559d97668 (diff) | |
parent | 440b3177995914ac1dd90a84b9f625ca72e8750a (diff) | |
download | otp-85793776a01d283d83305ef9e5b7e9566af68b34.tar.gz otp-85793776a01d283d83305ef9e5b7e9566af68b34.tar.bz2 otp-85793776a01d283d83305ef9e5b7e9566af68b34.zip |
Merge branch 'bjorn/compiler/crash/OTP-10794'
* bjorn/compiler/crash/OTP-10794:
Test setelement(1, not_a_tuple, NewValue)
Fix crash in the compiler when compiling element(2, not_a_tuple)
Diffstat (limited to 'lib/compiler/src')
-rw-r--r-- | lib/compiler/src/sys_core_fold.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compiler/src/sys_core_fold.erl b/lib/compiler/src/sys_core_fold.erl index d5fec0c869..07b054c5d7 100644 --- a/lib/compiler/src/sys_core_fold.erl +++ b/lib/compiler/src/sys_core_fold.erl @@ -1272,6 +1272,8 @@ eval_element(Call, #c_literal{val=Pos}, #c_var{name=V}, Types) true -> eval_failure(Call, badarg) end; + {ok,_} -> + eval_failure(Call, badarg); error -> Call end; |