Commit b01b3c44 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2555 from cubicdaiya/issues/reduce_strlen

Use sizeof() instead of strlen().
parents 84b24506 6c7ba826
...@@ -106,7 +106,7 @@ is_code_block_open(struct mrb_parser_state *parser) ...@@ -106,7 +106,7 @@ is_code_block_open(struct mrb_parser_state *parser)
/* check if parser error are available */ /* check if parser error are available */
if (0 < parser->nerr) { if (0 < parser->nerr) {
const char *unexpected_end = "syntax error, unexpected $end"; const char unexpected_end[] = "syntax error, unexpected $end";
const char *message = parser->error_buffer[0].message; const char *message = parser->error_buffer[0].message;
/* a parser error occur, we have to check if */ /* a parser error occur, we have to check if */
...@@ -114,7 +114,7 @@ is_code_block_open(struct mrb_parser_state *parser) ...@@ -114,7 +114,7 @@ is_code_block_open(struct mrb_parser_state *parser)
/* a different issue which we have to show to */ /* a different issue which we have to show to */
/* the user */ /* the user */
if (strncmp(message, unexpected_end, strlen(unexpected_end)) == 0) { if (strncmp(message, unexpected_end, sizeof(unexpected_end) - 1) == 0) {
code_block_open = TRUE; code_block_open = TRUE;
} }
else if (strcmp(message, "syntax error, unexpected keyword_end") == 0) { else if (strcmp(message, "syntax error, unexpected keyword_end") == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment