Browse Source

build: fix uninitialized variable error on gcc 7.4.0

*best is checked for null before the comparison against the uninitialized
variable ever happens, so this isn't a real issue.

Initialize it to zero so that we don't fail to compile on certain gcc versions.

plugins/pay.c: In function ‘add_shadow_route’:
plugins/pay.c:644:18: error: ‘sample’ may be used uninitialized in this function
   if (!best || v > sample) {
                ~~^~~~~~~~

Signed-off-by: William Casarin <jb55@jb55.com>
issue-2504
William Casarin 6 years ago
committed by Christian Decker
parent
commit
9aaf2fe8d4
  1. 2
      plugins/pay.c

2
plugins/pay.c

@ -658,7 +658,7 @@ static struct command_result *add_shadow_route(struct command *cmd,
const jsmntok_t *channels = json_get_member(buf, result, "channels"); const jsmntok_t *channels = json_get_member(buf, result, "channels");
const jsmntok_t *chan, *best = NULL; const jsmntok_t *chan, *best = NULL;
size_t i; size_t i;
u64 sample; u64 sample = 0;
u32 cltv, best_cltv; u32 cltv, best_cltv;
json_for_each_arr(i, chan, channels) { json_for_each_arr(i, chan, channels) {

Loading…
Cancel
Save