diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-09-19 05:16:45 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-09-19 05:54:35 +0200 |
commit | c3cbac06f54099bf75773419f38e3b48bfdcd45f (patch) | |
tree | 2bdef38f299a6031ac1c579e2043444a2207de1a /src/queueing.h | |
parent | 049d7bd343aabf3dc2cb7fdb69c6666f2fb1d373 (diff) |
queueing: no need to memzero struct
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/queueing.h')
-rw-r--r-- | src/queueing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queueing.h b/src/queueing.h index 30df3a8..48607a1 100644 --- a/src/queueing.h +++ b/src/queueing.h @@ -52,10 +52,10 @@ struct crypt_ctx { struct sk_buff_head packets; struct sk_buff *skb; }; + atomic_t is_finished; struct wireguard_peer *peer; struct noise_keypair *keypair; struct endpoint endpoint; - atomic_t is_finished; }; /* Returns either the correct skb->protocol value, or 0 if invalid. */ |