From 4f56ab9f1f538ae94cd86bddd455ad266af7132e Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Tue, 3 May 2011 20:35:57 +0200 Subject: Fix bug in halfword emulator causing ets:select_delete on ordered_set to crash --- erts/emulator/beam/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c index f531d1430b..6b4f3b3b36 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -2705,7 +2705,7 @@ term_array: /* arrays in 'aa' and 'bb', length in 'i' */ while (--i) { a = *aa++; b = *bb++; - if (a != b) { + if (!is_same(a,a_base, b,b_base)) { if (is_atom(a) && is_atom(b)) { if ((j = cmp_atoms(a, b)) != 0) { goto not_equal; -- cgit v1.2.3 From 7050c922b25fe1306caffc7545a89e0ddc1de06a Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Wed, 4 May 2011 12:36:00 +0200 Subject: Prepare release --- erts/doc/src/notes.xml | 16 ++++++++++++++++ erts/vsn.mk | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index e91839572b..f5607945a8 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -30,6 +30,22 @@

This document describes the changes made to the ERTS application.

+
Erts 5.8.3.2 + +
Known Bugs and Problems + + +

+ Fix halfword emulator bug in ets:select_delete for + ordered_set that caused emulator to crash.

+

+ Own Id: OTP-9258 Aux Id: seq11836

+
+
+
+ +
+
Erts 5.8.3.1
Fixed Bugs and Malfunctions diff --git a/erts/vsn.mk b/erts/vsn.mk index 833db76246..b02073134a 100644 --- a/erts/vsn.mk +++ b/erts/vsn.mk @@ -17,7 +17,7 @@ # %CopyrightEnd% # -VSN = 5.8.3.1 +VSN = 5.8.3.2 SYSTEM_VSN = R14B02 # Port number 4365 in 4.2 -- cgit v1.2.3