Commit fe79750b by Vicent Martí

Merge pull request #236 from Jopie64/development

Fix build errors on MSVC
parents 00c31dd2 393a9f9e
...@@ -960,7 +960,7 @@ static int pack_entry_find_offset( ...@@ -960,7 +960,7 @@ static int pack_entry_find_offset(
const unsigned char *index = p->index_map.data; const unsigned char *index = p->index_map.data;
unsigned hi, lo, stride; unsigned hi, lo, stride;
int pos, found = 0; int pos, found = 0;
const unsigned char *current; const unsigned char *current = 0;
*offset_out = 0; *offset_out = 0;
......
...@@ -464,7 +464,7 @@ int git_repository_discover(char *repository_path, size_t size, const char *star ...@@ -464,7 +464,7 @@ int git_repository_discover(char *repository_path, size_t size, const char *star
char bare_path[GIT_PATH_MAX]; char bare_path[GIT_PATH_MAX];
char normal_path[GIT_PATH_MAX]; char normal_path[GIT_PATH_MAX];
char *found_path; char *found_path;
dev_t current_device; dev_t current_device = 0;
assert(start_path && repository_path); assert(start_path && repository_path);
memset(&repo, 0x0, sizeof(git_repository)); memset(&repo, 0x0, sizeof(git_repository));
......
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