t-runner: Fix possible assignment of NULL pointer

This commit is contained in:
Tim Kourt 2019-10-22 16:13:15 -07:00 committed by Denis Kenzior
parent 43efadcf92
commit e859e98869
1 changed files with 2 additions and 1 deletions

View File

@ -2674,7 +2674,8 @@ static void run_tests(void)
test_action_str = ptr + 4;
ptr = strchr(test_action_str, '\'');
*ptr = '\0';
if (ptr)
*ptr = '\0';
if (!strcmp(test_action_str, "virtual"))
native_hw = false;