diff options
author | Sverker Eriksson <[email protected]> | 2018-09-04 14:38:36 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-09-04 14:38:36 +0200 |
commit | 0b2e1c581b260de7c8e6dd70b31a3d0098b2a5b6 (patch) | |
tree | 29bd224b2fee6b5d274585c4faf6013cf9d31f9a /lib/erl_interface/src | |
parent | c227e4aa03196dfa8c0228e1d9537299f66ba376 (diff) | |
parent | e3e013e4d8287c6dc8ca3992bd4559744e75f8d2 (diff) | |
download | otp-0b2e1c581b260de7c8e6dd70b31a3d0098b2a5b6.tar.gz otp-0b2e1c581b260de7c8e6dd70b31a3d0098b2a5b6.tar.bz2 otp-0b2e1c581b260de7c8e6dd70b31a3d0098b2a5b6.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/erl_interface/src')
-rw-r--r-- | lib/erl_interface/src/legacy/erl_marshal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/erl_interface/src/legacy/erl_marshal.c b/lib/erl_interface/src/legacy/erl_marshal.c index c18067b9bc..932bba43bf 100644 --- a/lib/erl_interface/src/legacy/erl_marshal.c +++ b/lib/erl_interface/src/legacy/erl_marshal.c @@ -1803,7 +1803,7 @@ static int cmp_exe2(unsigned char **e1, unsigned char **e2) k = 0; while (1) { if (k++ == min){ - if (i == j) return 0; + if (i == j) return compare_top_ext(e1 , e2); if (i < j) return -1; return 1; } |