Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
d37ba672
Commit
d37ba672
authored
Jul 09, 2011
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #312 from nulltoken/patch-2
Fix MSVC compilation warning
parents
c52736fa
b21fb849
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
src/odb.c
+1
-1
No files found.
src/odb.c
View file @
d37ba672
...
...
@@ -149,7 +149,7 @@ int git_odb_hashfile(git_oid *out, const char *path, git_otype type)
return
git__throw
(
GIT_EOSERR
,
"'%s' appears to be corrupted"
,
path
);
}
hdr_len
=
format_object_header
(
hdr
,
sizeof
(
hdr
),
size
,
type
);
hdr_len
=
format_object_header
(
hdr
,
sizeof
(
hdr
),
(
size_t
)
size
,
type
);
if
(
hdr_len
<
0
)
return
git__throw
(
GIT_ERROR
,
"Failed to format blob header. Length is out of bounds"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment