[前][次][番号順一覧][スレッド一覧]

ruby-changes:65054

From: =E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3 <ko1@a...>
Date: Wed, 27 Jan 2021 09:30:31 +0900 (JST)
Subject: [ruby-changes:65054] 7ccdad7be8 (master): fix OBJ_UNTRUST etc.

https://git.ruby-lang.org/ruby.git/commit/?id=7ccdad7be8

From 7ccdad7be83b8bd4fcd09a5bf224d33a64fa1d6f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?=
 <shyouhei@r...>
Date: Wed, 20 Jan 2021 11:01:35 +0900
Subject: fix OBJ_UNTRUST etc.

It seems I broke them in commit 9e6e39c3512f7a962c44dc3729c98a0f8be90341
Sorry!
---
 include/ruby/internal/fl_type.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/ruby/internal/fl_type.h b/include/ruby/internal/fl_type.h
index 455448f..9940036 100644
--- a/include/ruby/internal/fl_type.h
+++ b/include/ruby/internal/fl_type.h
@@ -109,8 +109,8 @@ https://github.com/ruby/ruby/blob/trunk/include/ruby/internal/fl_type.h#L109
 #define RB_OBJ_TAINTED       RB_OBJ_TAINTED
 #define RB_OBJ_TAINTED_RAW   RB_OBJ_TAINTED_RAW
 #define RB_OBJ_TAINT_RAW     RB_OBJ_TAINT_RAW
-#define RB_OBJ_UNTRUST       RB_OBJ_UNTRUST
-#define RB_OBJ_UNTRUSTED     RB_OBJ_UNTRUSTED
+#define RB_OBJ_UNTRUST       RB_OBJ_TAINT
+#define RB_OBJ_UNTRUSTED     RB_OBJ_TAINTED
 /** @endcond */
 
 /**
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]