A static const variable is implicitly zero initialized
authorTomas Mraz <tomas@openssl.org>
Tue, 27 Sep 2022 15:39:01 +0000 (17:39 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 27 Sep 2022 15:39:01 +0000 (17:39 +0200)
commit31fbf119f396cf67e808cb95e28302dbe45174cb
tree653fabab53af9dc948de60e59951aec83c89c70d
parent2f7e61b8b21ed472a3667b8922843851f94a3d93
A static const variable is implicitly zero initialized

Older clang versions complain about the explicit initializer
because the first member of the struct is a struct.
But it is not necessary to explicitly initialize it anyway.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19284)
crypto/bio/bss_dgram_pair.c