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
82cb8e23
Commit
82cb8e23
authored
Jul 05, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1692 from arrbee/fix-1692
Segmentation fault on git_clone
parents
4ae29053
55ededfd
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
14 deletions
+30
-14
src/buffer.c
+9
-0
src/buffer.h
+1
-0
src/clone.c
+0
-0
src/config_file.c
+1
-1
src/indexer.c
+1
-1
src/refspec.c
+18
-12
No files found.
src/buffer.c
View file @
82cb8e23
...
...
@@ -259,6 +259,15 @@ void git_buf_truncate(git_buf *buf, size_t len)
}
}
void
git_buf_shorten
(
git_buf
*
buf
,
size_t
amount
)
{
if
(
amount
>
buf
->
size
)
amount
=
buf
->
size
;
buf
->
size
=
buf
->
size
-
amount
;
buf
->
ptr
[
buf
->
size
]
=
'\0'
;
}
void
git_buf_rtruncate_at_char
(
git_buf
*
buf
,
char
separator
)
{
ssize_t
idx
=
git_buf_rfind_next
(
buf
,
separator
);
...
...
src/buffer.h
View file @
82cb8e23
...
...
@@ -91,6 +91,7 @@ int git_buf_vprintf(git_buf *buf, const char *format, va_list ap);
void
git_buf_clear
(
git_buf
*
buf
);
void
git_buf_consume
(
git_buf
*
buf
,
const
char
*
end
);
void
git_buf_truncate
(
git_buf
*
buf
,
size_t
len
);
void
git_buf_shorten
(
git_buf
*
buf
,
size_t
amount
);
void
git_buf_rtruncate_at_char
(
git_buf
*
path
,
char
separator
);
int
git_buf_join_n
(
git_buf
*
buf
,
char
separator
,
int
nbuf
,
...);
...
...
src/clone.c
View file @
82cb8e23
src/config_file.c
View file @
82cb8e23
...
...
@@ -1395,7 +1395,7 @@ static int parse_multiline_variable(diskfile_backend *cfg, git_buf *value, int i
* standard, this character **has** to be last one in the buf, with
* no whitespace after it */
assert
(
is_multiline_var
(
value
->
ptr
));
git_buf_
truncate
(
value
,
git_buf_len
(
value
)
-
1
);
git_buf_
shorten
(
value
,
1
);
proc_line
=
fixup_line
(
line
,
in_quotes
);
if
(
proc_line
==
NULL
)
{
...
...
src/indexer.c
View file @
82cb8e23
...
...
@@ -602,7 +602,7 @@ int git_indexer_stream_finalize(git_indexer_stream *idx, git_transfer_progress *
git_vector_sort
(
&
idx
->
objects
);
git_buf_sets
(
&
filename
,
idx
->
pack
->
pack_name
);
git_buf_
truncate
(
&
filename
,
filename
.
size
-
strlen
(
"pack"
));
git_buf_
shorten
(
&
filename
,
strlen
(
"pack"
));
git_buf_puts
(
&
filename
,
"idx"
);
if
(
git_buf_oom
(
&
filename
))
return
-
1
;
...
...
src/refspec.c
View file @
82cb8e23
...
...
@@ -225,25 +225,31 @@ int git_refspec_rtransform(char *out, size_t outlen, const git_refspec *spec, co
return
refspec_transform_internal
(
out
,
outlen
,
spec
->
dst
,
spec
->
src
,
name
);
}
static
int
refspec_transform
(
git_buf
*
out
,
const
char
*
from
,
const
char
*
to
,
const
char
*
name
)
static
int
refspec_transform
(
git_buf
*
out
,
const
char
*
from
,
const
char
*
to
,
const
char
*
name
)
{
if
(
git_buf_sets
(
out
,
to
)
<
0
)
size_t
to_len
=
to
?
strlen
(
to
)
:
0
;
size_t
from_len
=
from
?
strlen
(
from
)
:
0
;
size_t
name_len
=
name
?
strlen
(
name
)
:
0
;
if
(
git_buf_set
(
out
,
to
,
to_len
)
<
0
)
return
-
1
;
/*
* No '*' at the end means that it's mapped to one specific
*
branch, so no actual transformation is needed.
if
(
to_len
>
0
)
{
/* No '*' at the end of 'to' means that refspec is mapped to one
* specific
branch, so no actual transformation is needed.
*/
if
(
git_buf_len
(
out
)
>
0
&&
out
->
ptr
[
git_buf_len
(
out
)
-
1
]
!=
'*'
)
if
(
out
->
ptr
[
to_len
-
1
]
!=
'*'
)
return
0
;
git_buf_shorten
(
out
,
1
);
/* remove trailing '*' copied from 'to' */
}
git_buf_truncate
(
out
,
git_buf_len
(
out
)
-
1
);
/* remove trailing '*' */
git_buf_puts
(
out
,
name
+
strlen
(
from
)
-
1
);
if
(
git_buf_oom
(
out
))
return
-
1
;
if
(
from_len
>
0
)
/* ignore trailing '*' from 'from' */
from_len
--
;
if
(
from_len
>
name_len
)
from_len
=
name_len
;
return
0
;
return
git_buf_put
(
out
,
name
+
from_len
,
name_len
-
from_len
)
;
}
int
git_refspec_transform_r
(
git_buf
*
out
,
const
git_refspec
*
spec
,
const
char
*
name
)
...
...
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