<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/include/ruby/internal, branch ruby_3_0</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>merge revision(s) 29f6f79e7396018962eb25c5f5e409f5fe28a73b: [Backport #17788] [Backport #18574]</title>
<updated>2022-03-13T06:20:35+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-13T06:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2bb5fa495bf9d366d3c1fefc6b093dc4830f27bf'/>
<id>2bb5fa495bf9d366d3c1fefc6b093dc4830f27bf</id>
<content type='text'>
	Get `ruby_nonempty_memcpy` to have C linkage

	Fixes [Bug #17788]
	---
	 include/ruby/internal/memory.h | 2 ++
	 1 file changed, 2 insertions(+)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	Get `ruby_nonempty_memcpy` to have C linkage

	Fixes [Bug #17788]
	---
	 include/ruby/internal/memory.h | 2 ++
	 1 file changed, 2 insertions(+)
</pre>
</div>
</content>
</entry>
<entry>
<title>merge revision(s) bcc2bb28b04054106f4a36e8fd69b2af6ecb033a: [Backport #18500]</title>
<updated>2022-03-12T07:36:40+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-12T07:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bac99c5175bf58815846f9987093a6d944d07fd3'/>
<id>bac99c5175bf58815846f9987093a6d944d07fd3</id>
<content type='text'>
	Fix stack buffer overflow

	https://hackerone.com/reports/1306859
	---
	 include/ruby/internal/memory.h | 6 +++---
	 random.c                       | 7 ++-----
	 2 files changed, 5 insertions(+), 8 deletions(-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	Fix stack buffer overflow

	https://hackerone.com/reports/1306859
	---
	 include/ruby/internal/memory.h | 6 +++---
	 random.c                       | 7 ++-----
	 2 files changed, 5 insertions(+), 8 deletions(-)
</pre>
</div>
</content>
</entry>
<entry>
<title>merge revision(s) ecb2ff60507a41c624f59cb9da6a008ab3ec36e1: [Backport #18403]</title>
<updated>2022-03-12T06:52:46+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-12T06:52:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e413a8ff970fc7692e6c0050a23678605ade884e'/>
<id>e413a8ff970fc7692e6c0050a23678605ade884e</id>
<content type='text'>
	intern/select/posix.h: remove unused parameter from rb_fd_dup

	This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
	---
	 include/ruby/internal/intern/select/posix.h | 3 +--
	 1 file changed, 1 insertion(+), 2 deletions(-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	intern/select/posix.h: remove unused parameter from rb_fd_dup

	This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
	---
	 include/ruby/internal/intern/select/posix.h | 3 +--
	 1 file changed, 1 insertion(+), 2 deletions(-)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a typo [Bug #17522]</title>
<updated>2021-01-13T08:07:38+00:00</updated>
<author>
<name>Tee KOBAYASHI</name>
<email>xtkoba+ruby@gmail.com</email>
</author>
<published>2021-01-09T04:23:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=98ca667b9835fed7709ef192eac966aca98bf50d'/>
<id>98ca667b9835fed7709ef192eac966aca98bf50d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed dangling imemo_tmpbuf</title>
<updated>2021-01-13T08:07:17+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-01-02T03:11:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5b2a0fc682ce69e2b95532ce1116dcb32e6aa011'/>
<id>5b2a0fc682ce69e2b95532ce1116dcb32e6aa011</id>
<content type='text'>
The count of rb_alloc_tmp_buffer_with_count is the allocation size
counted in VALUE size but not in the requested element size.

Co-authored-by: Yusuke Endoh &lt;mame@ruby-lang.org&gt;
Co-authored-by: Koichi Sasada &lt;ko1@atdot.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The count of rb_alloc_tmp_buffer_with_count is the allocation size
counted in VALUE size but not in the requested element size.

Co-authored-by: Yusuke Endoh &lt;mame@ruby-lang.org&gt;
Co-authored-by: Koichi Sasada &lt;ko1@atdot.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>rb_cCont: no longer exists</title>
<updated>2020-12-22T06:25:03+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2020-12-22T06:25:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7898bc92258aff74d7600abe5dbdedff9b543cf0'/>
<id>7898bc92258aff74d7600abe5dbdedff9b543cf0</id>
<content type='text'>
Deleted well over a decade ago in commit 977d66ec993b0f1892fb3e4cd8ac.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Deleted well over a decade ago in commit 977d66ec993b0f1892fb3e4cd8ac.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed rb_cData entity</title>
<updated>2020-12-21T17:51:49+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2020-12-21T16:00:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8918a9cf6c65409ae1ffcdea324a1b97c6e5bb70'/>
<id>8918a9cf6c65409ae1ffcdea324a1b97c6e5bb70</id>
<content type='text'>
* Use the wrapper of rb_cObject instead of data access
* Replaced rest of extentions
* Updated the version guard for Data
* Added the version guard of rb_cData
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use the wrapper of rb_cObject instead of data access
* Replaced rest of extentions
* Updated the version guard for Data
* Added the version guard of rb_cData
</pre>
</div>
</content>
</entry>
<entry>
<title>Data: delete</title>
<updated>2020-12-21T17:51:49+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2020-07-27T07:15:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c30f03d32833f38fedf41ecb08f1ade9c6657fef'/>
<id>c30f03d32833f38fedf41ecb08f1ade9c6657fef</id>
<content type='text'>
Has been deprecated since 684bdf6171b76f5bc5e4f05926a5ab01ec2b4fd5.

Matz says in [ruby-core:83954] that Data should be an alias of Object.
Because rb_cData has not been deprecated, let us deprecate the constant
to make it a C-level synonym of rb_cObject.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Has been deprecated since 684bdf6171b76f5bc5e4f05926a5ab01ec2b4fd5.

Matz says in [ruby-core:83954] that Data should be an alias of Object.
Because rb_cData has not been deprecated, let us deprecate the constant
to make it a C-level synonym of rb_cObject.
</pre>
</div>
</content>
</entry>
<entry>
<title>include/ruby/internal/xmalloc.h: document rb_eNoMemError</title>
<updated>2020-12-21T02:01:01+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2020-12-14T07:54:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=fe60480947969d32797c265085cceb90b771702a'/>
<id>fe60480947969d32797c265085cceb90b771702a</id>
<content type='text'>
It was my bad, the exception that actually raises is rb_eNoMemError.
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was my bad, the exception that actually raises is rb_eNoMemError.
[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>include/ruby/internal/xmalloc.h: doxygen tag</title>
<updated>2020-12-21T02:01:01+00:00</updated>
<author>
<name>卜部昌平</name>
<email>shyouhei@ruby-lang.org</email>
</author>
<published>2020-12-14T06:17:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=11656d15e2c5d5779a637eaf5f388a5c18bef629'/>
<id>11656d15e2c5d5779a637eaf5f388a5c18bef629</id>
<content type='text'>
`@exception` is an alias of `@throw`.  It might suite Ruby's document
because ruby uses `raise` terminology instead of `throw`. [ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`@exception` is an alias of `@throw`.  It might suite Ruby's document
because ruby uses `raise` terminology instead of `throw`. [ci skip]
</pre>
</div>
</content>
</entry>
</feed>
