<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/src, branch buf-compare-normalize</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>buffer: normalize compare() output</title>
<updated>2014-04-30T22:42:39+00:00</updated>
<author>
<name>Trevor Norris</name>
<email>trev.norris@gmail.com</email>
</author>
<published>2014-04-29T21:46:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=51f49ddb6615432b1a6437a8c932f9d2ce2a71cf'/>
<id>51f49ddb6615432b1a6437a8c932f9d2ce2a71cf</id>
<content type='text'>
Because of differences in memcmp() implementation, normalize output to
return -1, 0 or 1 only.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because of differences in memcmp() implementation, normalize output to
return -1, 0 or 1 only.
</pre>
</div>
</content>
</entry>
<entry>
<title>child_process: fix assertion error in spawnSync</title>
<updated>2014-04-30T16:02:18+00:00</updated>
<author>
<name>Shigeki Ohtsu</name>
<email>ohtsu@iij.ad.jp</email>
</author>
<published>2014-04-21T16:26:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=ab7a3d098ddb13967014c723333c1df730da4940'/>
<id>ab7a3d098ddb13967014c723333c1df730da4940</id>
<content type='text'>
When ExitCallback was not called with an error such as ENOENT in
uv_spawn, the process handle still remains refed and needs to be closed.

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ExitCallback was not called with an error such as ENOENT in
uv_spawn, the process handle still remains refed and needs to be closed.

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: improve error messages</title>
<updated>2014-04-29T10:20:14+00:00</updated>
<author>
<name>Ingmar Runge</name>
<email>ingmar@irsoft.de</email>
</author>
<published>2014-04-22T20:03:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=26a1b712ec4e39cedc0b305165ce4660f47ba4d5'/>
<id>26a1b712ec4e39cedc0b305165ce4660f47ba4d5</id>
<content type='text'>
1) ThrowCryptoTypeErrors was not actually used for
   type-related errors. Removed it.
2) For AEAD modes, OpenSSL does not set any internal
   error information if Final does not complete suc-
   cessfully. Therefore, "TypeError:error:00000000:l
   ib(0):func(0):reason(0)" would be the error mess-
   age. Use a default message for these cases.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1) ThrowCryptoTypeErrors was not actually used for
   type-related errors. Removed it.
2) For AEAD modes, OpenSSL does not set any internal
   error information if Final does not complete suc-
   cessfully. Therefore, "TypeError:error:00000000:l
   ib(0):func(0):reason(0)" would be the error mess-
   age. Use a default message for these cases.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: fix a couple of VC++ warnings</title>
<updated>2014-04-29T10:13:28+00:00</updated>
<author>
<name>Rasmus Christian Pedersen</name>
<email>zerhacken@yahoo.com</email>
</author>
<published>2014-04-28T12:45:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=d13e0297c362c99062ba61d9569248938b2bb72a'/>
<id>d13e0297c362c99062ba61d9569248938b2bb72a</id>
<content type='text'>
Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>buffer: add compare and equals methods</title>
<updated>2014-04-29T05:09:48+00:00</updated>
<author>
<name>Sean McArthur</name>
<email>sean.monstar@gmail.com</email>
</author>
<published>2014-03-06T18:21:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=226f98a356fb62a706bc860c36c9ebc6124d776e'/>
<id>226f98a356fb62a706bc860c36c9ebc6124d776e</id>
<content type='text'>
compare() works like String.localeCompare such that:

    Buffer.compare(a, b) === a.compare(b);

equals() does a native check to see if two buffers are equal.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
compare() works like String.localeCompare such that:

    Buffer.compare(a, b) === a.compare(b);

equals() does a native check to see if two buffers are equal.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vm: assign Environment to created context</title>
<updated>2014-04-25T20:34:55+00:00</updated>
<author>
<name>Denys Zariaiev</name>
<email>denys.zariaiev@gmail.com</email>
</author>
<published>2014-04-25T12:06:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=681fe599d7a45fb537f948c08e64cdce06bc585d'/>
<id>681fe599d7a45fb537f948c08e64cdce06bc585d</id>
<content type='text'>
ContextifyContext::CreateV8Context is now create context
with Environment pointer

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ContextifyContext::CreateV8Context is now create context
with Environment pointer

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>deps: provide TXT chunk info in c-ares</title>
<updated>2014-04-24T06:40:35+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-03-27T20:09:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=a60a9b0dbd064cd70de9400ad47421c19d29b021'/>
<id>a60a9b0dbd064cd70de9400ad47421c19d29b021</id>
<content type='text'>
Provide more information in `ares_txt_reply` to coalesce chunks from the
same record into one string.

fix #7367
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Provide more information in `ares_txt_reply` to coalesce chunks from the
same record into one string.

fix #7367
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: fix memory leak in CipherBase::Final</title>
<updated>2014-04-23T10:13:43+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-04-22T15:53:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=89e88e96df551d070ca35576e7063f2a338d340a'/>
<id>89e88e96df551d070ca35576e7063f2a338d340a</id>
<content type='text'>
fix #7497

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix #7497

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: work around OpenSSL oddness</title>
<updated>2014-04-22T12:19:57+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-04-17T23:53:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=0f3b72460b9987192d498700bbb02143a632f721'/>
<id>0f3b72460b9987192d498700bbb02143a632f721</id>
<content type='text'>
OpenSSL behaves oddly: on client `cert_chain` contains
the `peer_certificate`, but on server it doesn't.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
OpenSSL behaves oddly: on client `cert_chain` contains
the `peer_certificate`, but on server it doesn't.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>src: lint after OCSP commits</title>
<updated>2014-04-17T22:24:48+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-04-17T22:24:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=afaff70a9b782c728b06a018d8473567c073df60'/>
<id>afaff70a9b782c728b06a018d8473567c073df60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
