<feed xmlns='http://www.w3.org/2005/Atom'>
<title>skalibs/src, branch v2.9.3.0</title>
<subtitle>The skarnet.org C programming library</subtitle>
<id>https://git.skarnet.org/cgit/skalibs/atom/src?h=v2.9.3.0</id>
<link rel='self' href='https://git.skarnet.org/cgit/skalibs/atom/src?h=v2.9.3.0'/>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/'/>
<updated>2020-09-17T23:31:28Z</updated>
<entry>
<title> Add stralloc_readyplus_tuned, fix overflow on stralloc_readyplus</title>
<updated>2020-09-17T23:31:28Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-09-17T23:31:28Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=24f08a61e6456fb2bdf1382000a0b4b3bf910d45'/>
<id>urn:sha1:24f08a61e6456fb2bdf1382000a0b4b3bf910d45</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Fix alloc_realloc UB</title>
<updated>2020-04-29T19:08:19Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-04-29T19:08:19Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=038082c425c40037a28111934dfb5037edbcad8c'/>
<id>urn:sha1:038082c425c40037a28111934dfb5037edbcad8c</id>
<content type='text'>
 void ** does not exist: the address of a generic pointer is not
properly defined (different pointer types may have different
representations). So, alloc_realloc cannot exist as is without UB.
Fortunately, it's not supposed to be used in the skalibs programming
style, and skalibs itself only uses it in two places
(stralloc_ready_tuned and stralloc_shrink) where the pointer is a
char *.
 So we just fix the UB by making alloc_realloc() take a char **,
and it's only defined for that pointer type.
 Nothing to see here folks, nothing happened at all.
</content>
</entry>
<entry>
<title> bugfix: sigprocmask invocation on non-signalfd systems</title>
<updated>2020-04-04T12:52:31Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-04-04T12:52:31Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=dd6ebd3d063c1d3caa48cf14ae89d21aa5acf2c3'/>
<id>urn:sha1:dd6ebd3d063c1d3caa48cf14ae89d21aa5acf2c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title> bugfix: do not include posixishard.h in an early header!</title>
<updated>2020-03-21T13:10:47Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-03-21T13:10:47Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=ab3af99b8537d7b106c7857ae29c9494926cef03'/>
<id>urn:sha1:ab3af99b8537d7b106c7857ae29c9494926cef03</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Explicitly unblock signals when selfpiped without signalfd</title>
<updated>2020-02-26T17:18:47Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-02-26T17:18:47Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=37e31f79514acfdff8ede65b73542b7abb1e61a5'/>
<id>urn:sha1:37e31f79514acfdff8ede65b73542b7abb1e61a5</id>
<content type='text'>
 This is arguably a bugfix, since selfpipe without signalfd
relies on signals being actually delivered, and a process may
have inherited a nonempty sigprocmask.

 Also use SIG_BLOCK instead of SIG_SETMASK when using
selfpipe_trapset() with signalfd, because we shouldn't unblock
signals that may have previously been blocked. This is also
arguably a bugfix.

 This commit is essential for using the version of s6-linux-init
that blocks SIGINT before disablecad on kernels without signalfd.
Without it, SIGINT never gets unblocked, so it's never delivered
to s6-svscan.
</content>
</entry>
<entry>
<title> execvep_internal: accommodate broken PATHs with ENOTDIR test</title>
<updated>2020-02-19T10:33:31Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-02-19T10:33:31Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=ab9c34c0e7b6a6abc8374b0e5f6515c75342239e'/>
<id>urn:sha1:ab9c34c0e7b6a6abc8374b0e5f6515c75342239e</id>
<content type='text'>
</content>
</entry>
<entry>
<title> bugfix: env_merge didn't correctly handle variable removal</title>
<updated>2020-02-10T19:18:54Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-02-10T19:18:54Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=dd478a768bce79bcf6c627310e2ddb473667fecc'/>
<id>urn:sha1:dd478a768bce79bcf6c627310e2ddb473667fecc</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Make sagethostname() work with all glibcs</title>
<updated>2020-01-30T23:01:10Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2020-01-30T23:01:10Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=1c2fb80f178650da370cbf86e994a1d74be82a12'/>
<id>urn:sha1:1c2fb80f178650da370cbf86e994a1d74be82a12</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Switch getrandom sysdep back to choose cl</title>
<updated>2019-10-26T06:08:45Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2019-10-26T06:08:45Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=28bfd386f2e8046c7b1cfb4b796ea1347e6a42b0'/>
<id>urn:sha1:28bfd386f2e8046c7b1cfb4b796ea1347e6a42b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title> Better bigkv</title>
<updated>2019-10-25T10:56:25Z</updated>
<author>
<name>Laurent Bercot</name>
<email>ska-skaware@skarnet.org</email>
</author>
<published>2019-10-25T10:56:25Z</published>
<link rel='alternate' type='text/html' href='https://git.skarnet.org/cgit/skalibs/commit/?id=c9e549afa60dc3c4660e1de42a79f810299c2ade'/>
<id>urn:sha1:c9e549afa60dc3c4660e1de42a79f810299c2ade</id>
<content type='text'>
</content>
</entry>
</feed>
