Commit 393a9f9ee12fa635656f43155df1f664dfbb7215

Johan 't Hart 2011-06-06T00:33:23

Fix build errors on MSVC

diff --git a/src/odb_pack.c b/src/odb_pack.c
index 525cfa4..02a1a61 100644
--- a/src/odb_pack.c
+++ b/src/odb_pack.c
@@ -960,7 +960,7 @@ static int pack_entry_find_offset(
 	const unsigned char *index = p->index_map.data;
 	unsigned hi, lo, stride;
 	int pos, found = 0;
-	const unsigned char *current;
+	const unsigned char *current = 0;
 
 	*offset_out = 0;
 
diff --git a/src/repository.c b/src/repository.c
index 249755b..dd6b428 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -458,7 +458,7 @@ int git_repository_discover(char *repository_path, size_t size, const char *star
 	char bare_path[GIT_PATH_MAX];
 	char normal_path[GIT_PATH_MAX];
 	char *found_path;
-	dev_t current_device;
+	dev_t current_device = 0;
 
 	assert(start_path && repository_path);
 	memset(&repo, 0x0, sizeof(git_repository));