<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libc, branch libressl-v2.3.8</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=libressl-v2.3.8</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=libressl-v2.3.8'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2016-02-07T20:50:24+00:00</updated>
<entry>
<title>compare pointer to NULL in example code</title>
<updated>2016-02-07T20:50:24+00:00</updated>
<author>
<name>mmcc</name>
<email></email>
</author>
<published>2016-02-07T20:50:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=64550dd44c759e7be9834a688c8b91cfd3f5593a'/>
<id>urn:sha1:64550dd44c759e7be9834a688c8b91cfd3f5593a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>be more forceful about not using these.</title>
<updated>2016-02-05T18:09:19+00:00</updated>
<author>
<name>espie</name>
<email></email>
</author>
<published>2016-02-05T18:09:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=b0da4200672d59fc9ea66c08b5f36d7848ea6a37'/>
<id>urn:sha1:b0da4200672d59fc9ea66c08b5f36d7848ea6a37</id>
<content type='text'>
improvements sthen@, jmc@. okay millert@, jca@ jmc@
</content>
</entry>
<entry>
<title>Fix err(3) calls after allocation failures in examples.</title>
<updated>2016-02-05T15:09:09+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2016-02-05T15:09:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=e4c0bcd220ad855573e4c0ced2e868becf4d563d'/>
<id>urn:sha1:e4c0bcd220ad855573e4c0ced2e868becf4d563d</id>
<content type='text'>
There is long-standing consensus that err(1, NULL) is the best idiom
after failure of malloc(3) and friends.
Quirk in the manual noticed by tb@.
</content>
</entry>
<entry>
<title>Don't crash dumping malloc stats if malloc_init hasn't been called, noted by</title>
<updated>2016-01-26T15:44:28+00:00</updated>
<author>
<name>otto</name>
<email></email>
</author>
<published>2016-01-26T15:44:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=7dd2931bc4345541724ce4f62b54914fbc4e0274'/>
<id>urn:sha1:7dd2931bc4345541724ce4f62b54914fbc4e0274</id>
<content type='text'>
David CARLIER
</content>
</entry>
<entry>
<title>Long ago, malloc internally had two kinds of failures, warnings and errors.</title>
<updated>2016-01-06T17:57:22+00:00</updated>
<author>
<name>tedu</name>
<email></email>
</author>
<published>2016-01-06T17:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d2d3923b962fcdc33d76e08bb585d64d78b0a09f'/>
<id>urn:sha1:d2d3923b962fcdc33d76e08bb585d64d78b0a09f</id>
<content type='text'>
The 'A' option elevated warnings to errors, and has been the default for some
time. Then warnings were effectively eliminated in favor of everything
being an error, but then the 'a' flag turned real errors into warnings!
Remove the 'a' option entirely. You shouldn't have used it anyway.
ok tb tdeval
</content>
</entry>
<entry>
<title>Follow style(9) and drop lint /* NOTREACHED */ annotations from</title>
<updated>2016-01-04T19:43:13+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2016-01-04T19:43:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0d944e745b286c8b496cde9e6ef33728246bf5b4'/>
<id>urn:sha1:0d944e745b286c8b496cde9e6ef33728246bf5b4</id>
<content type='text'>
the examples.

Diff from Juuso Lapinlampi &lt; wub () partyvan ! eu &gt;, thanks!

ok schwarze@
</content>
</entry>
<entry>
<title>another case where bad things would happen after wrterror</title>
<updated>2015-12-30T06:04:39+00:00</updated>
<author>
<name>tedu</name>
<email></email>
</author>
<published>2015-12-30T06:04:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=9db9334bfd2327783d1ec88b9a740fa95f9c31aa'/>
<id>urn:sha1:9db9334bfd2327783d1ec88b9a740fa95f9c31aa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>if somebody makes the mistake of disabling abort, don't deref null in</title>
<updated>2015-12-30T06:01:18+00:00</updated>
<author>
<name>tedu</name>
<email></email>
</author>
<published>2015-12-30T06:01:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=43d3e77da291417f1d53ae05da95959b45334cb5'/>
<id>urn:sha1:43d3e77da291417f1d53ae05da95959b45334cb5</id>
<content type='text'>
validate_junk. from Michal Mazurek
</content>
</entry>
<entry>
<title>Remove NULL-checks before free() and a few related dead assignments.</title>
<updated>2015-12-28T22:08:18+00:00</updated>
<author>
<name>mmcc</name>
<email></email>
</author>
<published>2015-12-28T22:08:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=70faac3485d844275c45acf2ad85cab3c2fa242d'/>
<id>urn:sha1:70faac3485d844275c45acf2ad85cab3c2fa242d</id>
<content type='text'>
ok and valuable input from millert@
</content>
</entry>
<entry>
<title>remove unused variable</title>
<updated>2015-12-27T01:26:47+00:00</updated>
<author>
<name>chl</name>
<email></email>
</author>
<published>2015-12-27T01:26:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=6b414d506e221ea1190c048c5ffb75db2f9abc46'/>
<id>urn:sha1:6b414d506e221ea1190c048c5ffb75db2f9abc46</id>
<content type='text'>
ok tedu@
</content>
</entry>
</feed>
