summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-31 12:10:08 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-31 12:10:08 +0000
commit974037a54272cd86a36bffafa22578a0ab15def7 (patch)
treefa17612ac37b3c3dedf4d03a45eefba4226c5b6b
parent6790891ef083b77faaf9d779463dfa0569a96ae5 (diff)
* eval.c (search_required): use RSTRING_PTR and RSTRING_STR.
* object.c (nil_plus): ditto. * ext/dl/cptr.c (rb_dlptr_s_to_ptr): ditto. * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_create_ext): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog11
-rw-r--r--eval.c2
-rw-r--r--ext/dl/cptr.c2
-rw-r--r--ext/openssl/ossl_x509ext.c2
-rw-r--r--ext/syck/emitter.c2
-rw-r--r--object.c2
6 files changed, 14 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index dbf7acd017..e2c63838bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,17 +6,24 @@ Thu Aug 31 20:50:46 2006 NAKAMURA Usaku <usa@ruby-lang.org>
Thu Aug 31 20:21:47 2006 NAKAMURA Usaku <usa@ruby-lang.org>
- * file.c (test_identical, rb_file_s_truncate): use RSTRING_PTR and
- RSTRING_STR.
+ * eval.c (search_required): use RSTRING_PTR and RSTRING_STR.
+
+ * file.c (test_identical, rb_file_s_truncate): ditto.
* io.c (pipe_open, rb_io_reopen): ditto.
+ * object.c (nil_plus): ditto.
+
* process.c (proc_spawn_n, rb_spawn): ditto.
* util.c (ruby_add_suffix): ditto.
* ext/Win32API/Win32API.c (Win32API_initialize): ditto.
+ * ext/dl/cptr.c (rb_dlptr_s_to_ptr): ditto.
+
+ * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_create_ext): ditto.
+
* ext/tk/stubs.c, ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: ditto.
* ext/win32ole/win32ole.c (ole_val2olevariantdata): ditto.
diff --git a/eval.c b/eval.c
index 63e3c36250..c24728da47 100644
--- a/eval.c
+++ b/eval.c
@@ -6993,7 +6993,7 @@ search_required(VALUE fname, VALUE *path)
OBJ_FREEZE(tmp);
if (rb_find_file_ext(&tmp, loadable_ext+1)) {
tmp = rb_file_expand_path(tmp, Qnil);
- ext = strrchr(ftptr = RSTRING(tmp)->ptr, '.');
+ ext = strrchr(ftptr = RSTRING_PTR(tmp), '.');
if (!rb_feature_p(ftptr, ext, Qfalse))
*path = tmp;
return 's';
diff --git a/ext/dl/cptr.c b/ext/dl/cptr.c
index fe83c7adf6..b947ef27ef 100644
--- a/ext/dl/cptr.c
+++ b/ext/dl/cptr.c
@@ -430,7 +430,7 @@ rb_dlptr_s_to_ptr(VALUE self, VALUE val)
}
else if( rb_obj_is_kind_of(val, rb_cString) == Qtrue ){
char *ptr = StringValuePtr(val);
- return rb_dlptr_new(ptr, RSTRING(val)->len, NULL);
+ return rb_dlptr_new(ptr, RSTRING_LEN(val), NULL);
}
else if( rb_respond_to(val, id_to_ptr) ){
VALUE vptr = rb_funcall(val, id_to_ptr, 0);
diff --git a/ext/openssl/ossl_x509ext.c b/ext/openssl/ossl_x509ext.c
index c024a955e4..aa9366f901 100644
--- a/ext/openssl/ossl_x509ext.c
+++ b/ext/openssl/ossl_x509ext.c
@@ -241,7 +241,7 @@ ossl_x509extfactory_create_ext(int argc, VALUE *argv, VALUE self)
ext = X509V3_EXT_nconf_nid(conf, ctx, nid, RSTRING_PTR(valstr));
#else
if (!empty_lhash) empty_lhash = lh_new(NULL, NULL);
- ext = X509V3_EXT_conf_nid(empty_lhash, ctx, nid, RSTRING(valstr)->ptr);
+ ext = X509V3_EXT_conf_nid(empty_lhash, ctx, nid, RSTRING_PTR(valstr));
#endif
if (!ext){
ossl_raise(eX509ExtError, "%s = %s",
diff --git a/ext/syck/emitter.c b/ext/syck/emitter.c
index 40d91931d3..d3704f867b 100644
--- a/ext/syck/emitter.c
+++ b/ext/syck/emitter.c
@@ -98,7 +98,7 @@ syck_base64dec( char *s, long len )
}
}
*end = '\0';
- /*RSTRING(buf)->len = ptr - RSTRING(buf)->ptr;*/
+ /*RSTRING_LEN(buf) = ptr - RSTRING_PTR(buf);*/
return ptr;
}
diff --git a/object.c b/object.c
index d04cf0b4d8..66463228c8 100644
--- a/object.c
+++ b/object.c
@@ -729,7 +729,7 @@ nil_plus(VALUE x, VALUE y)
return y;
default:
rb_raise(rb_eTypeError, "tried to add %s(%s) to nil",
- RSTRING(rb_inspect(y))->ptr,
+ RSTRING_PTR(rb_inspect(y)),
rb_obj_classname(y));
}
/* not reached */