<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/crypto, branch OTP_R16B03</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Prepare release</title>
<updated>2013-12-09T19:12:33+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2013-12-09T19:12:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=25237481ccccd3ddfa74582dc267632ad618ba30'/>
<id>25237481ccccd3ddfa74582dc267632ad618ba30</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 'sverk/crypto-no_answer_from_tc_supervisor' into maint</title>
<updated>2013-12-03T13:24:36+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-12-03T13:24:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=586345ae7c2d49203ff984ccf1e64cf99f3d5b73'/>
<id>586345ae7c2d49203ff984ccf1e64cf99f3d5b73</id>
<content type='text'>
* sverk/crypto-no_answer_from_tc_supervisor:
  crypto: Add more lazy_eval to avoid no_answer_from_tc_supervisor
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* sverk/crypto-no_answer_from_tc_supervisor:
  crypto: Add more lazy_eval to avoid no_answer_from_tc_supervisor
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'nox/crypto-uninitialized-vars' into maint</title>
<updated>2013-12-02T14:50:28+00:00</updated>
<author>
<name>Henrik Nord</name>
<email>henrik@erlang.org</email>
</author>
<published>2013-12-02T14:50:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=25b992335e82919d6166b860c9b97710c5f33ae1'/>
<id>25b992335e82919d6166b860c9b97710c5f33ae1</id>
<content type='text'>
* nox/crypto-uninitialized-vars:
  Fix some uninitialized pointers in crypto

OTP-11510
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* nox/crypto-uninitialized-vars:
  Fix some uninitialized pointers in crypto

OTP-11510
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Add more lazy_eval to avoid no_answer_from_tc_supervisor</title>
<updated>2013-12-02T14:23:03+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-12-02T14:23:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e8b447625a6001dfaa46069b5216561160ed3e53'/>
<id>e8b447625a6001dfaa46069b5216561160ed3e53</id>
<content type='text'>
Amendment to f1ebf482e1460d6146d55aa6cab00ab3e11f1741
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Amendment to f1ebf482e1460d6146d55aa6cab00ab3e11f1741
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Avoid test_server crash 'no_answer_from_tc_supervisor'</title>
<updated>2013-11-22T14:35:47+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-11-22T14:30:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f1ebf482e1460d6146d55aa6cab00ab3e11f1741'/>
<id>f1ebf482e1460d6146d55aa6cab00ab3e11f1741</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some uninitialized pointers in crypto</title>
<updated>2013-11-21T20:36:19+00:00</updated>
<author>
<name>Anthony Ramine</name>
<email>n.oxyde@gmail.com</email>
</author>
<published>2013-11-21T20:34:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5fec8527e925f4a6da02d560a9afbbf39912747c'/>
<id>5fec8527e925f4a6da02d560a9afbbf39912747c</id>
<content type='text'>
crypto.c:2748:9: warning: variable 'bn_prime' is used uninitialized whenever '||' condition is true [-Wsometimes-uninitialized]
    if (!get_bn_from_bin(env, argv[0], &amp;bn_verifier)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
crypto.c:2758:6: note: uninitialized use occurs here
        if (bn_prime) BN_free(bn_prime);
            ^~~~~~~~
crypto.c:2748:9: note: remove the '||' if its condition is always false
    if (!get_bn_from_bin(env, argv[0], &amp;bn_verifier)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
crypto.c:2748:9: warning: variable 'bn_prime' is used uninitialized whenever '||' condition is true [-Wsometimes-uninitialized]
    if (!get_bn_from_bin(env, argv[0], &amp;bn_verifier)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
crypto.c:2758:6: note: uninitialized use occurs here
        if (bn_prime) BN_free(bn_prime);
            ^~~~~~~~
crypto.c:2748:9: note: remove the '||' if its condition is always false
    if (!get_bn_from_bin(env, argv[0], &amp;bn_verifier)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2013-09-16T18:11:53+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2013-09-16T18:11:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=20641fe0f2ea745873fc7557448d3a7deb1bd639'/>
<id>20641fe0f2ea745873fc7557448d3a7deb1bd639</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 'sverk/crypto-remove-ec-resource' into maint</title>
<updated>2013-06-20T14:28:53+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-06-20T14:28:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5d8a13bb6a180e0a20fb008139f8c1088bcf9fda'/>
<id>5d8a13bb6a180e0a20fb008139f8c1088bcf9fda</id>
<content type='text'>
* sverk/crypto-remove-ec-resource:
  crypto: Supress some false positives from valgrind
  crypto: Refactor remove resource for EC_KEY
  crypto: Fix some compiler warnings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* sverk/crypto-remove-ec-resource:
  crypto: Supress some false positives from valgrind
  crypto: Refactor remove resource for EC_KEY
  crypto: Fix some compiler warnings
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2013-06-17T14:23:55+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2013-06-17T14:23:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=8cece79b77952c991e62ae595bcf71cde016a052'/>
<id>8cece79b77952c991e62ae595bcf71cde016a052</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Supress some false positives from valgrind</title>
<updated>2013-06-12T16:02:43+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-06-12T08:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=797721617d11cfab32dbde9eea68c7a7353c8efe'/>
<id>797721617d11cfab32dbde9eea68c7a7353c8efe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
