We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf26762 commit 3c31e21Copy full SHA for 3c31e21
src/lib/libssl/d1_pkt.c
@@ -1,4 +1,4 @@
1
-/* $OpenBSD: d1_pkt.c,v 1.125 2022/11/11 17:15:26 jsing Exp $ */
+/* $OpenBSD: d1_pkt.c,v 1.126 2022/11/23 07:31:12 tb Exp $ */
2
/*
3
* DTLS implementation written by Nagendra Modadugu
4
* (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -553,7 +553,7 @@ dtls1_read_handshake_unexpected(SSL *s)
553
}
554
555
/* Parse handshake message header. */
556
- CBS_dup(&cbs, tls_content_cbs(s->s3->rcontent));
+ CBS_dup(tls_content_cbs(s->s3->rcontent), &cbs);
557
if (!dtls1_get_message_header(&cbs, &hs_msg_hdr))
558
return -1; /* XXX - probably should drop/continue. */
559
0 commit comments