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
cba60b9b
Commit
cba60b9b
authored
Aug 05, 2016
by
Edward Thomson
Committed by
GitHub
Aug 05, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3884 from pks-t/pks/patch-image-initialization
Patch image initialization
parents
73dab769
274a727e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
src/apply.c
+1
-1
src/pool.h
+5
-0
No files found.
src/apply.c
View file @
cba60b9b
...
...
@@ -38,7 +38,7 @@ static void patch_line_init(
out
->
content_offset
=
in_offset
;
}
#define PATCH_IMAGE_INIT {
{0}
}
#define PATCH_IMAGE_INIT {
GIT_POOL_INIT, GIT_VECTOR_INIT
}
static
int
patch_image_init_fromstr
(
patch_image
*
out
,
const
char
*
in
,
size_t
in_len
)
...
...
src/pool.h
View file @
cba60b9b
...
...
@@ -35,6 +35,8 @@ typedef struct {
uint32_t
page_size
;
/* size of page in bytes */
}
git_pool
;
#define GIT_POOL_INIT { NULL, 0, 0 }
#else
/**
...
...
@@ -57,6 +59,9 @@ typedef struct {
uint32_t
item_size
;
uint32_t
page_size
;
}
git_pool
;
#define GIT_POOL_INIT { GIT_VECTOR_INIT, 0, 0 }
#endif
/**
...
...
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