<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib, branch OTP-21.0.5</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Update release notes</title>
<updated>2018-08-10T17:02:49+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-08-10T17:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=d41ed9524c7fc93b27aa28f51e8a07be4703a27b'/>
<id>d41ed9524c7fc93b27aa28f51e8a07be4703a27b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update version numbers</title>
<updated>2018-08-10T17:02:30+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-08-10T17:02:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=671dfd2acde87f5727ea442c942e1083a391aaee'/>
<id>671dfd2acde87f5727ea442c942e1083a391aaee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'john/crypto/fix-segfault-on-badarg/OTP-15194/ERL-673' into maint-21</title>
<updated>2018-08-10T17:02:29+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-08-10T17:02:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e0d90366cf797f4a30bd51b503cb9d99501fbb5b'/>
<id>e0d90366cf797f4a30bd51b503cb9d99501fbb5b</id>
<content type='text'>
* john/crypto/fix-segfault-on-badarg/OTP-15194/ERL-673:
  crypto: Fix crash in compute_key(ecdh, ...) on badarg
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* john/crypto/fix-segfault-on-badarg/OTP-15194/ERL-673:
  crypto: Fix crash in compute_key(ecdh, ...) on badarg
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'john/compiler/fix-deterministic-include-paths/OTP-15204/ERL-679' into maint-21</title>
<updated>2018-08-10T17:02:28+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-08-10T17:02:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=dd0a39cdd7407cd739d02577e79c54ff0d78b7cf'/>
<id>dd0a39cdd7407cd739d02577e79c54ff0d78b7cf</id>
<content type='text'>
* john/compiler/fix-deterministic-include-paths/OTP-15204/ERL-679:
  Omit include path debug info for +deterministic builds

# Conflicts:
#	lib/compiler/test/compile_SUITE.erl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* john/compiler/fix-deterministic-include-paths/OTP-15204/ERL-679:
  Omit include path debug info for +deterministic builds

# Conflicts:
#	lib/compiler/test/compile_SUITE.erl
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Fix crash in compute_key(ecdh, ...) on badarg</title>
<updated>2018-08-09T14:41:09+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2018-07-18T08:23:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=806a409df7cf2b07a39b3876fd36099579df126a'/>
<id>806a409df7cf2b07a39b3876fd36099579df126a</id>
<content type='text'>
When term2point was passed a non-binary argument, `my_ecpoint`
would be left uninitialized and the cleanup code would free a
garbage pointer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When term2point was passed a non-binary argument, `my_ecpoint`
would be left uninitialized and the cleanup code would free a
garbage pointer.
</pre>
</div>
</content>
</entry>
<entry>
<title>Omit include path debug info for +deterministic builds</title>
<updated>2018-08-09T13:44:19+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2018-07-26T12:35:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ca3867d783d610d1990a137d6a9387168dda6605'/>
<id>ca3867d783d610d1990a137d6a9387168dda6605</id>
<content type='text'>
Compiling the same file with different include paths resulted in
different files with the `+deterministic` flag even if everything
but the paths were identical. This was caused by the absolute path
of each include directory being unconditionally included in a
debug information chunk.

This commit fixes this by only including this information in
non-deterministic builds.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Compiling the same file with different include paths resulted in
different files with the `+deterministic` flag even if everything
but the paths were identical. This was caused by the absolute path
of each include directory being unconditionally included in a
debug information chunk.

This commit fixes this by only including this information in
non-deterministic builds.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix node crash on passing bad arguments to file:read_file_info/2</title>
<updated>2018-07-18T12:07:48+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2018-07-18T11:55:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2e5e9cf29d67db7d9f85c3ae27c88ca3824e7496'/>
<id>2e5e9cf29d67db7d9f85c3ae27c88ca3824e7496</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rickard/corba-build/OTP-15176' into maint-21</title>
<updated>2018-07-12T15:53:35+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-07-12T15:53:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a76294229b9548bb28cb4e3443b4654c3877e2a8'/>
<id>a76294229b9548bb28cb4e3443b4654c3877e2a8</id>
<content type='text'>
* rickard/corba-build/OTP-15176:
  Provide build support for standalone corba repo
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* rickard/corba-build/OTP-15176:
  Provide build support for standalone corba repo
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide build support for standalone corba repo</title>
<updated>2018-07-12T13:30:37+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2018-07-11T14:00:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f5814f7b40b1d91527d797cada8202d7004e7c24'/>
<id>f5814f7b40b1d91527d797cada8202d7004e7c24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update release notes</title>
<updated>2018-06-29T12:30:53+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2018-06-29T12:30:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5c8e7e905a678e1214cab55fed38d6d93fab04cb'/>
<id>5c8e7e905a678e1214cab55fed38d6d93fab04cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
