Commit 43efaabd40d8f9773a2fccb8acea704332446008

Vicent Marti 2012-12-05T20:54:03

common: Silly vmg.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/src/common.h b/src/common.h
index 3f9dedd..c7f4fdd 100644
--- a/src/common.h
+++ b/src/common.h
@@ -70,11 +70,12 @@ int giterr_set_regex(const regex_t *regex, int error_code);
  */
 GIT_INLINE(bool) giterr__check_version(const void *structure, unsigned int expected_max, const char *name)
 {
-	unsigned int actual = *(const unsigned int*)structure;
+	unsigned int actual;
 
 	if (!structure)
 		return true;
 
+	actual = *(const unsigned int*)structure;
 	if (actual > 0 && actual <= expected_max)
 		return true;