Commit e96c577e authored by David Goulet's avatar David Goulet 🐼 Committed by Nick Mathewson
Browse files

test: Make older GCC happy and thus our oniongit pipeline

parent 6120efd7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1421,7 +1421,8 @@ test_channel_for_extend(void *arg)
  channel_clear_client(chan1);

  /* Non matching ed identity with valid digest. */
  ed25519_public_key_t dumb_ed_id = {0};
  ed25519_public_key_t dumb_ed_id;
  memset(&dumb_ed_id, 0, sizeof(dumb_ed_id));
  ret_chan = channel_get_for_extend(digest, &dumb_ed_id, &addr, &msg,
                                    &launch);
  tt_assert(!ret_chan);