commit | 63adb490625f3fd964760c8d5ac3c7e249e436c2 | [log] [tgz] |
---|---|---|
author | Rich Evans <rich.evans@arm.com> | Tue Feb 10 12:44:07 2015 +0000 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Feb 10 14:37:49 2015 +0000 |
tree | 4179fedfc9bf3170e94044884cf1cb7410deea05 | |
parent | edb2dc93c6e69a7d3d9ceeccb63af28dd330e1af [diff] |
Fix compile warning in tests/ where result_len at tests/suites/test_suite_ccm.function:165 is potentially uninitialized using gcc-4.8.2.
diff --git a/tests/suites/test_suite_ccm.function b/tests/suites/test_suite_ccm.function index f597c69..d8ca4f5 100644 --- a/tests/suites/test_suite_ccm.function +++ b/tests/suites/test_suite_ccm.function
@@ -146,6 +146,7 @@ if( strcmp( "FAIL", result_hex ) == 0 ) { ret = POLARSSL_ERR_CCM_AUTH_FAILED; + result_len = -1; } else {