From: ruby@...1.net Date: 2014-12-20T00:50:10+00:00 Subject: [ruby-core:66990] [ruby-trunk - Bug #10623] rb_hash_delete() can return Qundef in 2.2-rc1 Issue #10623 has been updated by Aman Gupta. This regression was introduced in r48114 to fix #10413 ---------------------------------------- Bug #10623: rb_hash_delete() can return Qundef in 2.2-rc1 https://bugs.ruby-lang.org/issues/10623#change-50520 * Author: Aman Gupta * Status: Open * Priority: Normal * Assignee: * Category: * Target version: current: 2.2.0 * ruby -v: ruby 2.2.0dev [x86_64-darwin14] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN ---------------------------------------- The behavior of rb_hash_delete() has changed from 2.1. Before, it would always return Qnil or VALUE. Now it can also return Qundef, which is breaking the posix-spawn gem's usage: https://github.com/rtomayko/posix-spawn/blob/master/ext/posix-spawn.c#L242-L258 It also appears RTEST(Qundef) returns true, which causes a segfault in posix-spawn gem here: https://github.com/rtomayko/posix-spawn/blob/master/ext/posix-spawn.c#L425 I think we should revert back to original behavior before 2.2.0 is released. -- https://bugs.ruby-lang.org/