Skip to content

Commit

Permalink
Remove an unused string and comment on an unsafe action
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrous26 committed Apr 13, 2012
1 parent 2670fc7 commit 881356e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gcd.c
Expand Up @@ -595,7 +595,8 @@ rb_block_arg_dispatcher(rb_vm_block_t *block, VALUE param)
VALUE args[2];
args[0] = (VALUE)block;
args[1] = param;
rb_rescue(rb_block_arg_eval, (VALUE) args, rb_block_rescue, (VALUE)"gcd.c: Exception in rb_block_arg_dispatcher");
// XXX We are casting a C array to VALUE here!!!
rb_rescue(rb_block_arg_eval, (VALUE)args, rb_block_rescue, Qnil);
}

static void
Expand Down

0 comments on commit 881356e

Please sign in to comment.