1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Initialise some variables to keep gcc happy.

This commit is contained in:
Stephen Dolan
2012-09-18 23:46:23 +01:00
parent 134b062be7
commit 71ab537ee9
2 changed files with 2 additions and 2 deletions

View File

@ -527,7 +527,7 @@ static int compile(struct locfile* locations, struct bytecode* bc, block b) {
int nargs = curr->imm.intval;
assert(nargs > 0);
code[pos++] = (uint16_t)nargs;
int desired_params;
int desired_params = 0;
for (int i=0; i<nargs; i++) {
curr = curr->next;
assert(curr && opcode_describe(curr->op)->flags & OP_IS_CALL_PSEUDO);

View File

@ -2120,7 +2120,7 @@ bigcomp
(struct dtoa_context* C, U *rv, const char *s0, BCinfo *bc)
{
Bigint *b, *d;
int b2, bbits, d2, dd, dig, dsign, i, j, nd, nd0, p2, p5, speccase;
int b2, bbits, d2, dd=0, dig, dsign, i, j, nd, nd0, p2, p5, speccase;
dsign = bc->dsign;
nd = bc->nd;