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
51a3dfb5
Commit
51a3dfb5
authored
Nov 01, 2013
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pack: `__object_header` always returns unsigned values
parent
3343b5ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
src/indexer.c
+1
-2
src/pack.c
+2
-2
src/pack.h
+1
-1
No files found.
src/indexer.c
View file @
51a3dfb5
...
...
@@ -632,8 +632,7 @@ static int inject_object(git_indexer_stream *idx, git_oid *id)
git_buf
buf
=
GIT_BUF_INIT
;
git_off_t
entry_start
;
const
void
*
data
;
size_t
len
;
int
hdr_len
;
size_t
len
,
hdr_len
;
int
error
;
entry
=
git__calloc
(
1
,
sizeof
(
*
entry
));
...
...
src/pack.c
View file @
51a3dfb5
...
...
@@ -372,7 +372,7 @@ static unsigned char *pack_window_open(
* - each byte afterwards: low seven bits are size continuation,
* with the high bit being "size continues"
*/
in
t
git_packfile__object_header
(
unsigned
char
*
hdr
,
size_t
size
,
git_otype
type
)
size_
t
git_packfile__object_header
(
unsigned
char
*
hdr
,
size_t
size
,
git_otype
type
)
{
unsigned
char
*
hdr_base
;
unsigned
char
c
;
...
...
@@ -392,7 +392,7 @@ int git_packfile__object_header(unsigned char *hdr, size_t size, git_otype type)
}
*
hdr
++
=
c
;
return
(
int
)(
hdr
-
hdr_base
);
return
(
hdr
-
hdr_base
);
}
...
...
src/pack.h
View file @
51a3dfb5
...
...
@@ -112,7 +112,7 @@ typedef struct git_packfile_stream {
git_mwindow
*
mw
;
}
git_packfile_stream
;
in
t
git_packfile__object_header
(
unsigned
char
*
hdr
,
size_t
size
,
git_otype
type
);
size_
t
git_packfile__object_header
(
unsigned
char
*
hdr
,
size_t
size
,
git_otype
type
);
int
git_packfile_unpack_header
(
size_t
*
size_p
,
...
...
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