1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 4bff8e8423: [Backport #16814]

Ensure that the head of the vacancy list is correctly inserted into
	 the linked list.

	See <https://bugs.ruby-lang.org/issues/16814> for more details.
	---
	 cont.c | 1 +
	 1 file changed, 1 insertion(+)
This commit is contained in:
nagachika 2021-03-20 15:54:03 +09:00
parent 82bce422ba
commit 755a349a3a
2 changed files with 2 additions and 1 deletions

1
cont.c
View file

@ -324,6 +324,7 @@ fiber_pool_vacancy_push(struct fiber_pool_vacancy * vacancy, struct fiber_pool_v
#ifdef FIBER_POOL_ALLOCATION_FREE
if (head) {
head->previous = vacancy;
vacancy->previous = NULL;
}
#endif

View file

@ -2,7 +2,7 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 3
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
#define RUBY_PATCHLEVEL 173
#define RUBY_PATCHLEVEL 174
#define RUBY_RELEASE_YEAR 2021
#define RUBY_RELEASE_MONTH 3