diff options
author | Micael Karlberg <[email protected]> | 2011-10-06 11:03:09 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-10-06 11:03:09 +0200 |
commit | d6c066068b827cfa9503966cab23366227b1f48a (patch) | |
tree | 29b37fa1e185419fc19ffe91a06436c87af47b2b /lib/erl_interface/doc/src/notes.xml | |
parent | 87ca1d9f9d0962609ccb17a1b306a8a0815bc6c5 (diff) | |
parent | d01551f400e2a7944dcc10319be0c9f248ca3179 (diff) | |
download | otp-d6c066068b827cfa9503966cab23366227b1f48a.tar.gz otp-d6c066068b827cfa9503966cab23366227b1f48a.tar.bz2 otp-d6c066068b827cfa9503966cab23366227b1f48a.zip |
Merge branch 'master' of super:otp into bmk/megaco/20111003/improving_mstone1/OTP-9604
Diffstat (limited to 'lib/erl_interface/doc/src/notes.xml')
-rw-r--r-- | lib/erl_interface/doc/src/notes.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index 7055fcd5c9..9a42ebfddf 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -30,6 +30,53 @@ </header> <p>This document describes the changes made to the Erl_interface application.</p> +<section><title>Erl_Interface 3.7.5</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p>Align ei buffer according to size of pointers</p> + <p> + Own Id: OTP-9390</p> + </item> + <item> + <p> XML files have been corrected. </p> + <p> + Own Id: OTP-9550 Aux Id: OTP-9541 </p> + </item> + <item> + <p> + Make comment and documentation reflect code in + erl_interface/src/misc/ei_decode_term.c (Thanks to Anneli + Cuss)</p> + <p> + Own Id: OTP-9559</p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + ei: integer overflow in string/atom encoding</p> + <p> + ei_encode_atom() and ei_encode_string() use strlen() to + get the length of the buffer. As strlen() returns an + unsigned long long and both ei functions take a signed + integer, the length fields may overflow.</p> + <p> + Check so that the results of strlen can be held in a + signed integer. (Thanks to Michael Santos)</p> + <p> + Own Id: OTP-9530</p> + </item> + </list> + </section> + +</section> + <section><title>Erl_Interface 3.7.4</title> <section><title>Fixed Bugs and Malfunctions</title> |