Don't call memcpy(NULL, 0) which has undefined behavior

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
diff --git a/tests/suites/test_suite_asn1write.function b/tests/suites/test_suite_asn1write.function
index 8c260f7..4ed8644 100644
--- a/tests/suites/test_suite_asn1write.function
+++ b/tests/suites/test_suite_asn1write.function
@@ -417,9 +417,12 @@
 
 #if defined(MBEDTLS_ASN1_PARSE_C)
     ASSERT_ALLOC( masked_bitstring, byte_length );
-    memcpy( masked_bitstring, bitstring->x, byte_length );
-    if( bits % 8 != 0 )
-        masked_bitstring[byte_length - 1] &= ~( 0xff >> ( bits % 8 ) );
+    if( byte_length != 0 )
+    {
+        memcpy( masked_bitstring, bitstring->x, byte_length );
+        if( bits % 8 != 0 )
+            masked_bitstring[byte_length - 1] &= ~( 0xff >> ( bits % 8 ) );
+    }
     size_t value_bits = bits;
     if( is_named )
     {