Skip to content

Commit

Permalink
Merge branch 'maint-r14' into dev
Browse files Browse the repository at this point in the history
Conflicts:
	erts/vsn.mk
  • Loading branch information
sverker committed May 5, 2011
2 parents aa9497c + 7050c92 commit 8e6ae6d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions erts/doc/src/notes.xml
Expand Up @@ -30,6 +30,22 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>

<section><title>Erts 5.8.3.2</title>

<section><title>Known Bugs and Problems</title>
<list>
<item>
<p>
Fix halfword emulator bug in <c>ets:select_delete</c> for
<c>ordered_set</c> that caused emulator to crash.</p>
<p>
Own Id: OTP-9258 Aux Id: seq11836 </p>
</item>
</list>
</section>

</section>

<section><title>Erts 5.8.3.1</title>

<section><title>Fixed Bugs and Malfunctions</title>
Expand Down
2 changes: 1 addition & 1 deletion erts/emulator/beam/utils.c
Expand Up @@ -2705,7 +2705,7 @@ Sint cmp(Eterm a, Eterm b)
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;
Expand Down

0 comments on commit 8e6ae6d

Please sign in to comment.