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
b0507e76
Commit
b0507e76
authored
Oct 15, 2019
by
KOBAYASHI Shuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust `buf` size in `str_escape`
parent
dc474b62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/string.c
src/string.c
+1
-2
No files found.
src/string.c
View file @
b0507e76
...
...
@@ -1318,14 +1318,13 @@ str_replace_partial(mrb_state *mrb, mrb_value src, mrb_int pos, mrb_int end, mrb
return
src
;
}
#define CHAR_ESC_LEN 13
/* sizeof(\x{ hex of 32bit unsigned int } \0) */
#define IS_EVSTR(p,e) ((p) < (e) && (*(p) == '$' || *(p) == '@' || *(p) == '{'))
static
mrb_value
str_escape
(
mrb_state
*
mrb
,
mrb_value
str
,
mrb_bool
inspect
)
{
const
char
*
p
,
*
pend
;
char
buf
[
CHAR_ESC_LEN
+
1
];
char
buf
[
4
];
/* `\x??` or UTF-8 character */
mrb_value
result
=
mrb_str_new_lit
(
mrb
,
"
\"
"
);
#ifdef MRB_UTF8_STRING
uint32_t
ascii_flag
=
MRB_STR_ASCII
;
...
...
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