Remove redundant memset()

The preceding calloc() already zeroizes that memory area, therfore the
memset() is not necessary. Compilers are likely to optimize this out,
but it still can be confusing to readers.
diff --git a/library/x509_crt.c b/library/x509_crt.c
index 047e4e6..f58b156 100644
--- a/library/x509_crt.c
+++ b/library/x509_crt.c
@@ -1858,7 +1858,6 @@
                     if( prev_san != NULL )
                         prev_san->next = cur_san;
 
-                    memset( cur_san, 0, sizeof( mbedtls_x509_subject_alternative_name ) );
                     cur_san->type = MBEDTLS_X509_SAN_DNS_NAME;
 
                     memcpy( &cur_san->san.unstructured_name,