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
6850b516
Commit
6850b516
authored
Jan 06, 2017
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '25_smartpktparse' into maint/v0.25
parents
ab8a0fdb
2fdef641
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
16 deletions
+13
-16
src/transports/smart_pkt.c
+13
-5
src/transports/smart_protocol.c
+0
-11
No files found.
src/transports/smart_pkt.c
View file @
6850b516
...
...
@@ -427,15 +427,23 @@ int git_pkt_parse_line(
if
(
bufflen
>
0
&&
bufflen
<
(
size_t
)
len
)
return
GIT_EBUFS
;
/*
* The length has to be exactly 0 in case of a flush
* packet or greater than PKT_LEN_SIZE, as the decoded
* length includes its own encoded length of four bytes.
*/
if
(
len
!=
0
&&
len
<
PKT_LEN_SIZE
)
return
GIT_ERROR
;
line
+=
PKT_LEN_SIZE
;
/*
* TODO: How do we deal with empty lines? Try again? with the next
* line?
* The Git protocol does not specify empty lines as part
* of the protocol. Not knowing what to do with an empty
* line, we should return an error upon hitting one.
*/
if
(
len
==
PKT_LEN_SIZE
)
{
*
head
=
NULL
;
*
out
=
line
;
return
0
;
giterr_set_str
(
GITERR_NET
,
"Invalid empty packet"
);
return
GIT_ERROR
;
}
if
(
len
==
0
)
{
/* Flush pkt */
...
...
src/transports/smart_protocol.c
View file @
6850b516
...
...
@@ -763,14 +763,6 @@ static int add_push_report_sideband_pkt(git_push *push, git_pkt_data *data_pkt,
line_len
-=
(
line_end
-
line
);
line
=
line_end
;
/* When a valid packet with no content has been
* read, git_pkt_parse_line does not report an
* error, but the pkt pointer has not been set.
* Handle this by skipping over empty packets.
*/
if
(
pkt
==
NULL
)
continue
;
error
=
add_push_report_pkt
(
push
,
pkt
);
git_pkt_free
(
pkt
);
...
...
@@ -825,9 +817,6 @@ static int parse_report(transport_smart *transport, git_push *push)
error
=
0
;
if
(
pkt
==
NULL
)
continue
;
switch
(
pkt
->
type
)
{
case
GIT_PKT_DATA
:
/* This is a sideband packet which contains other packets */
...
...
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