Skip to content
Snippets Groups Projects
Commit ff08be56 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix another pointless stack-protector warning.

This is the same as we fixed in 39f45546.
parent 762b7995
No related branches found
No related tags found
No related merge requests found
......@@ -1625,7 +1625,7 @@ test_entry_guard_node_filter(void *arg)
bridge_line_t *bl = NULL;
/* Initialize a bunch of node objects that are all guards. */
const int NUM = 7;
#define NUM 7
node_t *n[NUM];
entry_guard_t *g[NUM];
int i;
......@@ -1704,6 +1704,7 @@ test_entry_guard_node_filter(void *arg)
done:
guard_selection_free(gs);
tor_free(bl);
#undef NUM
}
static void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment