Skip to content

Commit

Permalink
Fix #1356, Remove stray remaining 'goto' in OSAL test code
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Jan 25, 2023
1 parent a9fece5 commit e5ca64d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/unit-tests/osfile-test/ut_osfile_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,17 @@ int32 UT_os_setup_fs()
if (res != OS_SUCCESS)
{
UtPrintf("OS_mkfs() returns %d\n", (int)res);
goto UT_os_setup_fs_exit_tag;
return res;
}

res = OS_mount(g_devName, g_mntName);
if (res != OS_SUCCESS)
{
UtPrintf("OS_mount() returns %d\n", (int)res);
OS_rmfs(g_devName);
goto UT_os_setup_fs_exit_tag;
return res;
}

UT_os_setup_fs_exit_tag:
return res;
}

Expand Down

0 comments on commit e5ca64d

Please sign in to comment.