Avoid some uninitialized variables.
This commit is contained in:
parent
3fc964faaf
commit
409ad2d73b
|
@ -3019,7 +3019,7 @@ static Scheme_Object *raise_arity_error(int argc, Scheme_Object *argv[])
|
||||||
|
|
||||||
static Scheme_Object *raise_result_arity_error(int argc, Scheme_Object *argv[])
|
static Scheme_Object *raise_result_arity_error(int argc, Scheme_Object *argv[])
|
||||||
{
|
{
|
||||||
const char *where, *detail;
|
const char *where = NULL, *detail = NULL;
|
||||||
Scheme_Object **got_argv;
|
Scheme_Object **got_argv;
|
||||||
int i, expected;
|
int i, expected;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user