Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
01a8d849
Unverified
Commit
01a8d849
authored
Jul 06, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid infinite loop when converting objects to strings.
parent
81fc5ff4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
src/object.c
src/object.c
+1
-0
src/string.c
src/string.c
+1
-0
No files found.
src/object.c
View file @
01a8d849
...
...
@@ -338,6 +338,7 @@ mrb_convert_type(mrb_state *mrb, mrb_value val, enum mrb_vtype type, const char
if
(
mrb_type
(
val
)
==
type
)
return
val
;
v
=
convert_type
(
mrb
,
val
,
tname
,
method
,
TRUE
);
if
(
mrb_type
(
v
)
!=
type
)
{
if
(
type
==
MRB_TT_STRING
)
return
mrb_any_to_s
(
mrb
,
val
);
mrb_raisef
(
mrb
,
E_TYPE_ERROR
,
"%v cannot be converted to %s by #%s"
,
val
,
tname
,
method
);
}
return
v
;
...
...
src/string.c
View file @
01a8d849
...
...
@@ -1121,6 +1121,7 @@ mrb_str_to_str(mrb_state *mrb, mrb_value str)
return
mrb_sym_str
(
mrb
,
mrb_symbol
(
str
));
case
MRB_TT_FIXNUM
:
return
mrb_fixnum_to_str
(
mrb
,
str
,
10
);
case
MRB_TT_SCLASS
:
case
MRB_TT_CLASS
:
case
MRB_TT_MODULE
:
return
mrb_mod_to_s
(
mrb
,
str
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment