mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-23 11:53:01 +00:00
memset has undefined behavior when either pointer can be NULL, which is the case when it's the result of malloc/calloc with a size of 0. The memset calls here are useless anyway since they come immediately after calloc.