瀏覽代碼

test: Make older GCC happy and thus our oniongit pipeline

Signed-off-by: David Goulet <dgoulet@torproject.org>
David Goulet 7 年之前
父節點
當前提交
e96c577ed2
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/test/test_channel.c

+ 2 - 1
src/test/test_channel.c

@@ -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);