CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/09/26 01:36:51
Modified files:
lib/libssl : d1_lib.c
Log message:
Refactor dtls1_clear_queues()
An upcoming cleanup diff by jsing needs dtls1_clear_queues() to be
able to handle NULL pqueues. While one can easily add a NULL check
to pqueue_pop(), this does not really fit in with the rest of the
code. There are two kinds of while loops in dtls1_clear_queues that
drain pqueues, so add two helper functions with a NULL check each.
ok jsing