diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2009-06-13 10:02:42 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2009-06-13 10:02:42 +0000 |
commit | 90dfafc410b048d2ba1ca33db98fecfac7b1bc7c (patch) | |
tree | 3b89ea14eb48e7ed5f21b7ed4d756e5e2e50c7c5 /lang/erlang14/Makefile | |
parent | d14a6e684e28f61dca5837cc1238af71cc0dff42 (diff) |
Add bugfix for ei_decode_big.
"The high order bits of the 16-bits digit (short) are read, even if
the byte (at u[(i*2)+1]) doesn't belong to the big. In other words,
big numbers such as 16#1234567890 with an odd number of bytes are
decoded with a garbage byte (i.e. 16#XX1234567890)."
http://erlang.org/pipermail/erlang-bugs/2008-October/001023.html
Obtained from: Paul Guyot <pguyot at kallisys.net>
Notes
Notes:
svn path=/head/; revision=235681
Diffstat (limited to 'lang/erlang14/Makefile')
-rw-r--r-- | lang/erlang14/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/erlang14/Makefile b/lang/erlang14/Makefile index ef61b99bcfa0..0f0287f76df8 100644 --- a/lang/erlang14/Makefile +++ b/lang/erlang14/Makefile @@ -7,7 +7,7 @@ PORTNAME= erlang PORTVERSION= r13b01 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/ \ |