mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 12:22:32 +00:00
Merge pull request #526 from nulltoken/fix/attr
Fix some "attributes" related issues
This commit is contained in:
commit
b0df89d90b
@ -73,7 +73,7 @@ int git_attr_get_many(
|
||||
attr_get_many_info *info = NULL;
|
||||
size_t num_found = 0;
|
||||
|
||||
memset(values, 0, sizeof(const char *) * num_attr);
|
||||
memset((void *)values, 0, sizeof(const char *) * num_attr);
|
||||
|
||||
if ((error = git_attr_path__init(&path, pathname)) < GIT_SUCCESS ||
|
||||
(error = collect_attr_files(repo, pathname, &files)) < GIT_SUCCESS)
|
||||
|
@ -486,7 +486,7 @@ static int win32_find_system_file(git_buf *path, const char *filename)
|
||||
filename++;
|
||||
|
||||
if (gitwin_append_utf16(file_utf16 + root->len - 1, filename, len + 1) !=
|
||||
(int)len) {
|
||||
(int)len + 1) {
|
||||
error = git__throw(GIT_EOSERR, "Failed to build file path");
|
||||
goto cleanup;
|
||||
}
|
||||
|
@ -7,19 +7,21 @@
|
||||
void test_attr_file__simple_read(void)
|
||||
{
|
||||
git_attr_file *file = NULL;
|
||||
git_attr_assignment *assign;
|
||||
git_attr_rule *rule;
|
||||
|
||||
cl_git_pass(git_attr_file__from_file(NULL, cl_fixture("attr/attr0"), &file));
|
||||
cl_assert_strequal(cl_fixture("attr/attr0"), file->path);
|
||||
cl_assert(file->rules.length == 1);
|
||||
|
||||
git_attr_rule *rule = get_rule(0);
|
||||
rule = get_rule(0);
|
||||
cl_assert(rule != NULL);
|
||||
cl_assert_strequal("*", rule->match.pattern);
|
||||
cl_assert(rule->match.length == 1);
|
||||
cl_assert(rule->match.flags == 0);
|
||||
|
||||
cl_assert(rule->assigns.length == 1);
|
||||
git_attr_assignment *assign = get_assign(rule, 0);
|
||||
assign = get_assign(rule, 0);
|
||||
cl_assert(assign != NULL);
|
||||
cl_assert_strequal("binary", assign->name);
|
||||
cl_assert(assign->value == GIT_ATTR_TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user