Commit df1733de by Edward Thomson

checkout tests: ensure readlink succeeds

Don't try to use `link_size` as an index into a string if `p_readlink`
returned <0.  That will - obviously - fail and we'll write out of
bounds.
parent 8533c80d
......@@ -185,9 +185,11 @@ void test_checkout_index__honor_coresymlinks_default(void)
check_file_contents("./symlink/link_to_new.txt", "new.txt");
} else {
char link_data[1024];
size_t link_size = 1024;
int link_size = 1024;
link_size = p_readlink("./symlink/link_to_new.txt", link_data, link_size);
cl_assert(link_size >= 0);
link_data[link_size] = '\0';
cl_assert_equal_i(link_size, strlen("new.txt"));
cl_assert_equal_s(link_data, "new.txt");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment