Re: [PATCH 0/2] libssl pqueue simplify allocations

2014-05-18 Thread Miod Vallat
> Hi all, > > * No need to check for NULL before free. > * No need to cast the return value of the allocation functions. > * Do not use malloc() + memset(), simply use calloc() > > Tested against the regression tests for pqueue. > > ok? Applied. Thanks!

[PATCH 0/2] libssl pqueue simplify allocations

2014-05-07 Thread Dimitris Papastamos
Hi all, * No need to check for NULL before free. * No need to cast the return value of the allocation functions. * Do not use malloc() + memset(), simply use calloc() Tested against the regression tests for pqueue. ok? === --- pque