Fix verbose test framework mote to use unmet_dep_count for index
This commit is contained in:
parent
38d188896c
commit
a30a72f80f
@ -357,8 +357,8 @@ int main(int argc, const char *argv[])
|
|||||||
{
|
{
|
||||||
if( dep_check( params[i] ) != DEPENDENCY_SUPPORTED )
|
if( dep_check( params[i] ) != DEPENDENCY_SUPPORTED )
|
||||||
{
|
{
|
||||||
unmet_dependencies[ i-1 ] = strdup(params[i]);
|
unmet_dependencies[ unmet_dep_count ] = strdup(params[i]);
|
||||||
if( unmet_dependencies[ i-1 ] == NULL )
|
if( unmet_dependencies[ unmet_dep_count ] == NULL )
|
||||||
{
|
{
|
||||||
mbedtls_printf("FATAL: Out of memory\n");
|
mbedtls_printf("FATAL: Out of memory\n");
|
||||||
mbedtls_exit( MBEDTLS_EXIT_FAILURE );
|
mbedtls_exit( MBEDTLS_EXIT_FAILURE );
|
||||||
|
Loading…
Reference in New Issue
Block a user