diff options
Diffstat (limited to 'src/index.c')
| -rw-r--r-- | src/index.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.c b/src/index.c index c738c2431..389780295 100644 --- a/src/index.c +++ b/src/index.c @@ -687,12 +687,12 @@ static int read_header(struct index_header *dest, const void *buffer)  	dest->signature = ntohl(source->signature);  	if (dest->signature != INDEX_HEADER_SIG) -		return git__throw(GIT_EOBJCORRUPTED, "Failed to read header. Invalid signature"); +		return GIT_EOBJCORRUPTED;  	dest->version = ntohl(source->version);  	if (dest->version != INDEX_VERSION_NUMBER_EXT &&  		dest->version != INDEX_VERSION_NUMBER) -		return git__throw(GIT_EOBJCORRUPTED, "Failed to read header. Invalid index version number"); +		return GIT_EOBJCORRUPTED;  	dest->entry_count = ntohl(source->entry_count);  	return GIT_SUCCESS;  | 
