mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
remove assignment to unused dst; close #424
This commit is contained in:
+1
-1
@@ -281,7 +281,7 @@ mrb_load_irep(mrb_state *mrb, FILE* fp)
|
||||
dst += rlen;
|
||||
}
|
||||
rite_fgets(rfp, hex8, sizeof(hex8), TRUE); //dummy record len
|
||||
dst += hex_to_bin32(dst, hex8);
|
||||
hex_to_bin32(dst, hex8); /* dst += hex_to_bin32(dst, hex8); */
|
||||
if (0 != hex_to_uint32(hex8)) {
|
||||
ret = MRB_DUMP_INVALID_IREP;
|
||||
goto error_exit;
|
||||
|
||||
Reference in New Issue
Block a user