mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* struct.c (struct_make_members_list, rb_struct_s_def): member names should be unique. [ruby-core:74971] [Bug #12291] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			685 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			685 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "ruby.h"
 | 
						|
 | 
						|
static VALUE
 | 
						|
bug_struct_new_duplicate(VALUE obj, VALUE name, VALUE mem)
 | 
						|
{
 | 
						|
    const char *n = NIL_P(name) ? 0 : StringValueCStr(name);
 | 
						|
    const char *m = StringValueCStr(mem);
 | 
						|
    return rb_struct_define(n, m, m, NULL);
 | 
						|
}
 | 
						|
 | 
						|
static VALUE
 | 
						|
bug_struct_new_duplicate_under(VALUE obj, VALUE name, VALUE mem)
 | 
						|
{
 | 
						|
    const char *n = StringValueCStr(name);
 | 
						|
    const char *m = StringValueCStr(mem);
 | 
						|
    return rb_struct_define_under(obj, n, m, m, NULL);
 | 
						|
}
 | 
						|
 | 
						|
void
 | 
						|
Init_duplicate(VALUE klass)
 | 
						|
{
 | 
						|
    rb_define_singleton_method(klass, "new_duplicate", bug_struct_new_duplicate, 2);
 | 
						|
    rb_define_singleton_method(klass, "new_duplicate_under", bug_struct_new_duplicate_under, 2);
 | 
						|
}
 |