commit | 88f136f98b14144e86212ec5ebc994d71ceaee67 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Fri Sep 20 21:06:27 2019 +0200 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Fri Oct 04 11:35:09 2019 +0200 |
tree | 549b72aa1768aa2bbe0a0c4be71c697a747239d5 | |
parent | dc2db4832dcb4aad1fb95ab3b12db37879080969 [diff] [blame] |
Fix free_named_data_list tests Fix copypasta in test data and fix a switcho in test code.
diff --git a/tests/suites/test_suite_asn1parse.function b/tests/suites/test_suite_asn1parse.function index f5ecd55..3bfb1c7 100644 --- a/tests/suites/test_suite_asn1parse.function +++ b/tests/suites/test_suite_asn1parse.function
@@ -547,7 +547,7 @@ { mbedtls_asn1_named_data *new = NULL; ASSERT_ALLOC( new, sizeof( mbedtls_asn1_named_data ) ); - head->next = new; + new->next = head; head = new; }