summaryrefslogtreecommitdiff
path: root/ext/socket/ancdata.c
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2020-10-28 16:58:17 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2020-10-28 18:35:22 -0700
commit9f3adaf5293d6347250df218bad9dcd3cd8da9ba (patch)
tree4128d9eda3dc0686cdcdf99964acafc2e7b6a478 /ext/socket/ancdata.c
parentd8b0f1f7a84bf1ad85d649b125986ce181e79a58 (diff)
Use public allocators for creating new T_OBJECT objects
This way the header flags and object internals are set correctly
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3719
Diffstat (limited to 'ext/socket/ancdata.c')
-rw-r--r--ext/socket/ancdata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/socket/ancdata.c b/ext/socket/ancdata.c
index e0fc247f8c..546a971760 100644
--- a/ext/socket/ancdata.c
+++ b/ext/socket/ancdata.c
@@ -88,9 +88,9 @@ ancillary_initialize(VALUE self, VALUE vfamily, VALUE vlevel, VALUE vtype, VALUE
static VALUE
ancdata_new(int family, int level, int type, VALUE data)
{
- NEWOBJ_OF(obj, struct RObject, rb_cAncillaryData, T_OBJECT);
+ VALUE obj = rb_obj_alloc(rb_cAncillaryData);
StringValue(data);
- ancillary_initialize((VALUE)obj, INT2NUM(family), INT2NUM(level), INT2NUM(type), data);
+ ancillary_initialize(obj, INT2NUM(family), INT2NUM(level), INT2NUM(type), data);
return (VALUE)obj;
}