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
2fe293b6
Commit
2fe293b6
authored
Aug 09, 2012
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trim whitespace when parsing loose refs
parent
e4607392
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
36 deletions
+13
-36
src/refs.c
+13
-36
No files found.
src/refs.c
View file @
2fe293b6
...
...
@@ -128,6 +128,7 @@ static int reference_read(
result
=
git_futils_readbuffer_updated
(
file_content
,
path
.
ptr
,
mtime
,
updated
);
git_buf_free
(
&
path
);
return
result
;
}
...
...
@@ -135,12 +136,13 @@ static int loose_parse_symbolic(git_reference *ref, git_buf *file_content)
{
const
unsigned
int
header_len
=
(
unsigned
int
)
strlen
(
GIT_SYMREF
);
const
char
*
refname_start
;
char
*
eol
;
refname_start
=
(
const
char
*
)
file_content
->
ptr
;
if
(
git_buf_len
(
file_content
)
<
header_len
+
1
)
goto
corrupt
;
if
(
git_buf_len
(
file_content
)
<
header_len
+
1
)
{
giterr_set
(
GITERR_REFERENCE
,
"Corrupted loose reference file"
);
return
-
1
;
}
/*
* Assume we have already checked for the header
...
...
@@ -151,45 +153,16 @@ static int loose_parse_symbolic(git_reference *ref, git_buf *file_content)
ref
->
target
.
symbolic
=
git__strdup
(
refname_start
);
GITERR_CHECK_ALLOC
(
ref
->
target
.
symbolic
);
/* remove newline at the end of file */
eol
=
strchr
(
ref
->
target
.
symbolic
,
'\n'
);
if
(
eol
==
NULL
)
goto
corrupt
;
*
eol
=
'\0'
;
if
(
eol
[
-
1
]
==
'\r'
)
eol
[
-
1
]
=
'\0'
;
return
0
;
corrupt:
giterr_set
(
GITERR_REFERENCE
,
"Corrupted loose reference file"
);
return
-
1
;
}
static
int
loose_parse_oid
(
git_oid
*
oid
,
git_buf
*
file_content
)
{
char
*
buffer
;
buffer
=
(
char
*
)
file_content
->
ptr
;
/* File format: 40 chars (OID) + newline */
if
(
git_buf_len
(
file_content
)
<
GIT_OID_HEXSZ
+
1
)
goto
corrupt
;
if
(
git_oid_fromstr
(
oid
,
buffer
)
<
0
)
goto
corrupt
;
buffer
=
buffer
+
GIT_OID_HEXSZ
;
if
(
*
buffer
==
'\r'
)
buffer
++
;
if
(
*
buffer
!=
'\n'
)
goto
corrupt
;
return
0
;
/* File format: 40 chars (OID) */
if
(
git_buf_len
(
file_content
)
==
GIT_OID_HEXSZ
&&
git_oid_fromstr
(
oid
,
git_buf_cstr
(
file_content
))
==
0
)
return
0
;
corrupt:
giterr_set
(
GITERR_REFERENCE
,
"Corrupted loose reference file"
);
return
-
1
;
}
...
...
@@ -226,6 +199,8 @@ static int loose_lookup(git_reference *ref)
if
(
!
updated
)
return
0
;
git_buf_rtrim
(
&
ref_file
);
if
(
ref
->
flags
&
GIT_REF_SYMBOLIC
)
{
git__free
(
ref
->
target
.
symbolic
);
ref
->
target
.
symbolic
=
NULL
;
...
...
@@ -259,6 +234,8 @@ static int loose_lookup_to_packfile(
if
(
reference_read
(
&
ref_file
,
NULL
,
repo
->
path_repository
,
name
,
NULL
)
<
0
)
return
-
1
;
git_buf_rtrim
(
&
ref_file
);
name_len
=
strlen
(
name
);
ref
=
git__malloc
(
sizeof
(
struct
packref
)
+
name_len
+
1
);
GITERR_CHECK_ALLOC
(
ref
);
...
...
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