<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/include/ruby/internal, branch ruby_3_1</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Improved exception usage/classes.</title>
<updated>2021-12-20T23:25:42+00:00</updated>
<author>
<name>Samuel Williams</name>
<email>samuel.williams@oriontransfer.co.nz</email>
</author>
<published>2021-12-19T20:59:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=49166fc74a9cd0bf48baa08d32e020183ad46723'/>
<id>49166fc74a9cd0bf48baa08d32e020183ad46723</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>intern/select/posix.h: remove unused parameter from rb_fd_dup</title>
<updated>2021-12-10T17:23:30+00:00</updated>
<author>
<name>Yuta Saito</name>
<email>kateinoigakukun@gmail.com</email>
</author>
<published>2021-12-10T15:51:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ecb2ff60507a41c624f59cb9da6a008ab3ec36e1'/>
<id>ecb2ff60507a41c624f59cb9da6a008ab3ec36e1</id>
<content type='text'>
This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert zero-check for alloca</title>
<updated>2021-12-10T09:39:48+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-12-10T09:33:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a5baf8d6bc4c21259705f9b4f9aa2d9b9d7ab936'/>
<id>a5baf8d6bc4c21259705f9b4f9aa2d9b9d7ab936</id>
<content type='text'>
Something weird results in int-in-bool-context and
stringop-overflow warnings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Something weird results in int-in-bool-context and
stringop-overflow warnings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix stack buffer overflow</title>
<updated>2021-12-09T16:04:59+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-08-17T13:01:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bcc2bb28b04054106f4a36e8fd69b2af6ecb033a'/>
<id>bcc2bb28b04054106f4a36e8fd69b2af6ecb033a</id>
<content type='text'>
https://hackerone.com/reports/1306859
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://hackerone.com/reports/1306859
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Class#subclasses</title>
<updated>2021-11-23T09:50:44+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2021-10-28T12:07:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c0c2b31a35e19a47b499b57807bc0a0f9325f6d3'/>
<id>c0c2b31a35e19a47b499b57807bc0a0f9325f6d3</id>
<content type='text'>
Implements [Feature #18273]

Returns an array containing the receiver's direct subclasses without
singleton classes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements [Feature #18273]

Returns an array containing the receiver's direct subclasses without
singleton classes.
</pre>
</div>
</content>
</entry>
<entry>
<title>revival of must_not_null()</title>
<updated>2021-11-11T08:14:47+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2021-11-02T01:38:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=33533fabd54e23bced64a74114ee7786478a6ee7'/>
<id>33533fabd54e23bced64a74114ee7786478a6ee7</id>
<content type='text'>
Presence of RBIMPL_ATTR_NONNULL let C compilers to eliminate
must_not_null().  Because null pointers are not allowed to exist there
are no reason to call the function.  In reality null pointers are still
passed to those functions in a number of ways.  Runtime check for them
are definitely nice to have.  fix [Feature#18280]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Presence of RBIMPL_ATTR_NONNULL let C compilers to eliminate
must_not_null().  Because null pointers are not allowed to exist there
are no reason to call the function.  In reality null pointers are still
passed to those functions in a number of ways.  Runtime check for them
are definitely nice to have.  fix [Feature#18280]
</pre>
</div>
</content>
</entry>
<entry>
<title>rb_file_size: add doxygen</title>
<updated>2021-11-11T02:45:19+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2021-11-11T02:34:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f5dcecf3456e5f52aa979cc2a59c5dc7b398e123'/>
<id>f5dcecf3456e5f52aa979cc2a59c5dc7b398e123</id>
<content type='text'>
Must not be a bad idea to improve documents. [ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Must not be a bad idea to improve documents. [ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>rb_enc_code_to_mbclen: fix doxygen</title>
<updated>2021-11-11T02:45:19+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2021-11-11T02:33:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ad84c5d1b047604cc36a12d388ff2caa1da954c1'/>
<id>ad84c5d1b047604cc36a12d388ff2caa1da954c1</id>
<content type='text'>
Wrong parameter name. [ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wrong parameter name. [ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>RB_ENCODING_SET_INLINED: fix doxygen</title>
<updated>2021-11-11T02:45:19+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2021-11-11T02:29:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=4b3830127f794e70187ca2986199947b2467b46f'/>
<id>4b3830127f794e70187ca2986199947b2467b46f</id>
<content type='text'>
Wrong parameter name. [ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wrong parameter name. [ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>ENCODING_MASK: fix doxygen link [ci skip]</title>
<updated>2021-11-11T02:45:19+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2021-11-11T02:18:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a4a6e5cd2e69049c9e9296e597a429f849fbe749'/>
<id>a4a6e5cd2e69049c9e9296e597a429f849fbe749</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
