The second one was detected by cppcheck contrary to the first one.
Fixes issue #1032.
Thank you to Ilya for having reported this.
/* Only servers must send a HANDSHAKE_DONE frame. */
if (!objt_server(conn->conn->target)) {
frm = pool_alloc(pool_head_quic_frame);
+ if (!frm)
+ return 0;
+
frm->type = QUIC_FT_HANDSHAKE_DONE;
LIST_ADDQ(&conn->tx.frms_to_send, &frm->list);
}
struct quic_connection_id *cid;
frm = pool_alloc(pool_head_quic_frame);
- memset(frm, 0, sizeof *frm);
cid = new_quic_cid(&conn->cids, i);
if (!frm || !cid)
goto err;