diff options
author | Jean Boussier <[email protected]> | 2025-06-13 19:45:22 +0200 |
---|---|---|
committer | git <[email protected]> | 2025-06-13 17:46:10 +0000 |
commit | fb0dbbc0e660d0c77ebba292578945aca8baafac (patch) | |
tree | 8d4801f40ade4c013f4cd8800546f241810994b8 | |
parent | 99a72df16d6174f171754c3a4dcd48c07108097e (diff) |
[ruby/date] d_lite_marshal_load: copy ivars in the right order
https://github.com/ruby/date/commit/dbf4e957dc
-rw-r--r-- | ext/date/date_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c index aa7958bdd2..44dbf4fbcf 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -7613,7 +7613,7 @@ d_lite_marshal_load(VALUE self, VALUE a) HAVE_JD | HAVE_DF); } - rb_copy_generic_ivar(a, self); + rb_copy_generic_ivar(self, a); return self; } |