Skip to content

Commit

Permalink
fixup! Try to fix another memory sanitizer issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd-edlinger committed Dec 30, 2024
1 parent 63bf7ff commit af9f803
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions ssl/quic/quic_demux.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ int ossl_quic_demux_inject(QUIC_DEMUX *demux,

/* Move from free list to pending list. */
ossl_list_urxe_remove(&demux->urx_free, urxe);
urxe->datagram_id = demux->next_datagram_id++;
ossl_list_urxe_insert_tail(&demux->urx_pending, urxe);
urxe->demux_state = URXE_DEMUX_STATE_PENDING;

Expand Down
1 change: 0 additions & 1 deletion ssl/quic/quic_record_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ void ossl_qrx_inject_urxe(OSSL_QRX *qrx, QUIC_URXE *urxe)
urxe->processed = 0;
urxe->hpr_removed = 0;
urxe->deferred = 0;
urxe->datagram_id = 0;
ossl_list_urxe_insert_tail(&qrx->urx_pending, urxe);

if (qrx->msg_callback != NULL)
Expand Down

0 comments on commit af9f803

Please sign in to comment.