Commit 5d8ce306 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix an uninit variable usage



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent fb83f20c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ static int async_write(BIO *bio, const char *in, int inl)
            while (PACKET_remaining(&pkt) > 0) {
                PACKET payload, wholebody;
                unsigned int contenttype, versionhi, versionlo, data;
                unsigned int msgtype = 0, negversion;
                unsigned int msgtype = 0, negversion = 0;

                if (   !PACKET_get_1(&pkt, &contenttype)
                    || !PACKET_get_1(&pkt, &versionhi)