Skip to content

Commit

Permalink
[js] coding: initialize variable to make compiler happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ebirger committed May 3, 2016
1 parent 0b7493b commit abd57e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/js_eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -1680,7 +1680,7 @@ static int parse_for_in(scan_t *scan, scan_t **lhs, obj_t **rh_exp)

static int eval_for(obj_t **ret, scan_t *scan)
{
scan_t *in_lhs, *loop, *cond, *repeated, *end;
scan_t *in_lhs = NULL, *loop, *cond, *repeated, *end;
int next = 1, rc = 0;
obj_t *rh_exp;

Expand Down

0 comments on commit abd57e1

Please sign in to comment.