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
ef1e5da1
Commit
ef1e5da1
authored
Oct 03, 2011
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #438 from jdavid/development
Make git_oid_fromstrn support hex strings of odd length
parents
cd19ca95
0e058e78
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
src/oid.c
+16
-7
No files found.
src/oid.c
View file @
ef1e5da1
...
...
@@ -34,15 +34,16 @@ static char to_hex[] = "0123456789abcdef";
int
git_oid_fromstrn
(
git_oid
*
out
,
const
char
*
str
,
size_t
length
)
{
size_t
p
;
int
v
;
if
(
length
<
4
)
return
git__throw
(
GIT_ENOTOID
,
"Failed to generate sha1. Given string is too short"
);
if
(
length
>
GIT_OID_HEXSZ
)
length
=
GIT_OID_HEXSZ
;
if
(
length
%
2
)
length
--
;
for
(
p
=
0
;
p
<
length
;
p
+=
2
)
{
int
v
=
(
from_hex
[(
unsigned
char
)
str
[
p
+
0
]]
<<
4
)
for
(
p
=
0
;
p
<
length
-
1
;
p
+=
2
)
{
v
=
(
from_hex
[(
unsigned
char
)
str
[
p
+
0
]]
<<
4
)
|
from_hex
[(
unsigned
char
)
str
[
p
+
1
]];
if
(
v
<
0
)
...
...
@@ -51,8 +52,16 @@ int git_oid_fromstrn(git_oid *out, const char *str, size_t length)
out
->
id
[
p
/
2
]
=
(
unsigned
char
)
v
;
}
for
(;
p
<
GIT_OID_HEXSZ
;
p
+=
2
)
out
->
id
[
p
/
2
]
=
0x0
;
if
(
length
%
2
)
{
v
=
(
from_hex
[(
unsigned
char
)
str
[
p
+
0
]]
<<
4
);
if
(
v
<
0
)
return
git__throw
(
GIT_ENOTOID
,
"Failed to generate sha1. Given string is not a valid sha1 hash"
);
out
->
id
[
p
/
2
]
=
(
unsigned
char
)
v
;
p
+=
2
;
}
memset
(
out
->
id
+
p
/
2
,
0
,
(
GIT_OID_HEXSZ
-
p
)
/
2
);
return
GIT_SUCCESS
;
}
...
...
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