mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
give up RSTRING_PTR() being VALUE-aligned
rb_setup_fake_str() can take arbitrary char* address, typicalluy C string literals. These arguments have no guarantee of alignment at all. It was not a wise idea for me to think RSTRING_PTR can be aligned. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61835 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bca40b8b56
commit
e41b4a45a4
1 changed files with 3 additions and 3 deletions
|
@ -957,13 +957,13 @@ struct RString {
|
|||
union {
|
||||
struct {
|
||||
long len;
|
||||
ruby_aligned_char *ptr;
|
||||
char *ptr;
|
||||
union {
|
||||
long capa;
|
||||
VALUE shared;
|
||||
} aux;
|
||||
} heap;
|
||||
char RUBY_ALIGNAS(SIZEOF_VALUE) ary[RSTRING_EMBED_LEN_MAX + 1];
|
||||
char ary[RSTRING_EMBED_LEN_MAX + 1];
|
||||
} as;
|
||||
};
|
||||
#define RSTRING_EMBED_LEN(str) \
|
||||
|
@ -975,7 +975,7 @@ struct RString {
|
|||
RSTRING(str)->as.heap.len)
|
||||
#define RSTRING_PTR(str) \
|
||||
(!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
|
||||
(ruby_aligned_char *)RSTRING(str)->as.ary : \
|
||||
RSTRING(str)->as.ary : \
|
||||
RSTRING(str)->as.heap.ptr)
|
||||
#define RSTRING_END(str) \
|
||||
(!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
|
||||
|
|
Loading…
Reference in a new issue