aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/binary_SUITE.erl
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2017-09-13 10:36:07 +0200
committerErlang/OTP <[email protected]>2017-09-13 10:36:07 +0200
commita4cfcca78c83540b18786c92b1a3cf5d4ed15c2a (patch)
treef06982434a2856ce404de29d2ccceb064005b4c0 /erts/emulator/test/binary_SUITE.erl
parent6f09e2fe50a614fcc368c17410a23498f0cc2d6a (diff)
parent44a83c8860bbd00878c720a7b9d940b4630bab8a (diff)
downloadotp-a4cfcca78c83540b18786c92b1a3cf5d4ed15c2a.tar.gz
otp-a4cfcca78c83540b18786c92b1a3cf5d4ed15c2a.tar.bz2
otp-a4cfcca78c83540b18786c92b1a3cf5d4ed15c2a.zip
Merge branch 'sverker/20/binary_to_atom-utf8-crash/ERL-474/OTP-14590' into maint-20
* sverker/20/binary_to_atom-utf8-crash/ERL-474/OTP-14590: erts: Fix crash in binary_to_atom/term for invalid utf8
Diffstat (limited to 'erts/emulator/test/binary_SUITE.erl')
-rw-r--r--erts/emulator/test/binary_SUITE.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/test/binary_SUITE.erl b/erts/emulator/test/binary_SUITE.erl
index 4d17276e5c..61536bacd7 100644
--- a/erts/emulator/test/binary_SUITE.erl
+++ b/erts/emulator/test/binary_SUITE.erl
@@ -599,6 +599,9 @@ bad_binary_to_term(Config) when is_list(Config) ->
%% Bad float.
bad_bin_to_term(<<131,70,-1:64>>),
+
+ %% Truncated UTF8 character (ERL-474)
+ bad_bin_to_term(<<131,119,1,194,163>>),
ok.
bad_bin_to_term(BadBin) ->