Unverified Commit cc94c8bf authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4276 from shuujii/use-assert-for-checking-sym-in-sym_inline_unpack

Use `mrb_assert()` for checking `sym` in `sym_inline_unpack()`
parents 702a868b 921af692
......@@ -73,9 +73,9 @@ sym_inline_unpack(mrb_sym sym, char *buf)
{
int i;
if (sym == 0) return NULL;
if ((sym&1) == 0) return NULL; /* need to be inline sym */
if (sym&2) { /* all lower case (5bits/char) */
mrb_assert(sym&1);
if (sym&2) { /* all lower case (5bits/char) */
for (i=0; i<6; i++) {
uint32_t bits;
char c;
......
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