mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
test: Make older GCC happy and thus our oniongit pipeline
Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
parent
6120efd771
commit
e96c577ed2
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue