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
fa399750
Commit
fa399750
authored
Jun 27, 2015
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3265 from libgit2/leaks
Plug a bunch of leaks
parents
92ec9ed3
24fa21f3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
42 additions
and
8 deletions
+42
-8
src/diff_patch.c
+9
-1
src/diff_print.c
+3
-0
src/iterator.c
+3
-0
tests/checkout/crlf.c
+15
-5
tests/diff/binary.c
+5
-1
tests/fetchhead/nonetwork.c
+3
-0
tests/index/racy.c
+4
-1
No files found.
src/diff_patch.c
View file @
fa399750
...
...
@@ -325,9 +325,14 @@ static int diff_binary(git_diff_output *output, git_patch *patch)
old_data
,
old_len
,
new_data
,
new_len
))
<
0
)
return
error
;
return
giterr_set_after_callback_function
(
error
=
giterr_set_after_callback_function
(
output
->
binary_cb
(
patch
->
delta
,
&
binary
,
output
->
payload
),
"git_patch"
);
git__free
((
char
*
)
binary
.
old_file
.
data
);
git__free
((
char
*
)
binary
.
new_file
.
data
);
return
error
;
}
static
int
diff_patch_generate
(
git_patch
*
patch
,
git_diff_output
*
output
)
...
...
@@ -377,6 +382,9 @@ static void diff_patch_free(git_patch *patch)
git__free
((
char
*
)
patch
->
diff_opts
.
old_prefix
);
git__free
((
char
*
)
patch
->
diff_opts
.
new_prefix
);
git__free
((
char
*
)
patch
->
binary
.
old_file
.
data
);
git__free
((
char
*
)
patch
->
binary
.
new_file
.
data
);
if
(
patch
->
flags
&
GIT_DIFF_PATCH_ALLOCATED
)
git__free
(
patch
);
}
...
...
src/diff_print.c
View file @
fa399750
...
...
@@ -578,6 +578,9 @@ int git_diff_print(
giterr_set_after_callback_function
(
error
,
"git_diff_print"
);
}
git__free
(
pi
.
nfile
);
git__free
(
pi
.
ofile
);
git_buf_free
(
&
buf
);
return
error
;
...
...
src/iterator.c
View file @
fa399750
...
...
@@ -1926,6 +1926,9 @@ int git_iterator_walk(
}
done
:
git__free
(
iterator_item
);
git__free
(
cur_items
);
if
(
error
==
GIT_ITEROVER
)
error
=
0
;
...
...
tests/checkout/crlf.c
View file @
fa399750
...
...
@@ -47,15 +47,19 @@ static int compare_file(void *payload, git_buf *actual_path)
git_buf
expected_contents
=
GIT_BUF_INIT
;
struct
compare_data
*
cd
=
payload
;
bool
failed
=
true
;
int
cmp_git
,
cmp_gitattributes
;
char
*
basename
;
if
(
strcmp
(
git_path_basename
(
actual_path
->
ptr
),
".git"
)
==
0
||
strcmp
(
git_path_basename
(
actual_path
->
ptr
),
".gitattributes"
)
==
0
)
{
basename
=
git_path_basename
(
actual_path
->
ptr
);
cmp_git
=
strcmp
(
basename
,
".git"
);
cmp_gitattributes
=
strcmp
(
basename
,
".gitattributes"
);
if
(
cmp_git
==
0
||
cmp_gitattributes
==
0
)
{
failed
=
false
;
goto
done
;
}
cl_git_pass
(
git_buf_joinpath
(
&
expected_path
,
cd
->
dirname
,
git_path_basename
(
actual_path
->
ptr
)));
cl_git_pass
(
git_buf_joinpath
(
&
expected_path
,
cd
->
dirname
,
basename
));
if
(
!
git_path_isfile
(
expected_path
.
ptr
)
||
!
git_path_isfile
(
actual_path
->
ptr
))
...
...
@@ -83,6 +87,7 @@ done:
git_buf_free
(
&
details
);
}
git__free
(
basename
);
git_buf_free
(
&
expected_contents
);
git_buf_free
(
&
actual_contents
);
git_buf_free
(
&
expected_path
);
...
...
@@ -151,7 +156,12 @@ static void empty_workdir(const char *name)
git_path_dirload
(
&
contents
,
name
,
0
,
0
);
git_vector_foreach
(
&
contents
,
i
,
fn
)
{
if
(
strncasecmp
(
git_path_basename
(
fn
),
".git"
,
4
)
==
0
)
char
*
basename
=
git_path_basename
(
fn
);
int
cmp
=
strncasecmp
(
basename
,
".git"
,
4
);
git__free
(
basename
);
if
(
cmp
==
0
)
continue
;
p_unlink
(
fn
);
}
...
...
tests/diff/binary.c
View file @
fa399750
...
...
@@ -4,6 +4,7 @@
#include "buffer.h"
#include "filebuf.h"
#include "repository.h"
static
git_repository
*
repo
;
...
...
@@ -496,7 +497,7 @@ void test_diff_binary__blob_to_blob(void)
opts
.
id_abbrev
=
GIT_OID_HEXSZ
;
repo
=
cl_git_sandbox_init
(
"renames"
);
cl_git_pass
(
git_repository_index
(
&
index
,
repo
));
cl_git_pass
(
git_repository_index
__weakptr
(
&
index
,
repo
));
cl_git_append2file
(
"renames/untimely.txt"
,
"Oh that crazy Kipling!
\r\n
"
);
cl_git_pass
(
git_index_add_bypath
(
index
,
"untimely.txt"
));
...
...
@@ -531,4 +532,7 @@ void test_diff_binary__blob_to_blob(void)
git__free
(
diff_data
.
old_path
);
git__free
(
diff_data
.
new_path
);
git_buf_free
(
&
diff_data
.
old_binary_base85
);
git_buf_free
(
&
diff_data
.
new_binary_base85
);
}
tests/fetchhead/nonetwork.c
View file @
fa399750
...
...
@@ -394,4 +394,7 @@ void test_fetchhead_nonetwork__create_when_refpecs_given(void)
cl_git_pass
(
git_repository_fetchhead_foreach
(
g_repo
,
find_master
,
NULL
));
cl_assert
(
find_master_called
);
cl_assert
(
found_master
);
git_remote_free
(
remote
);
git_buf_free
(
&
path
);
}
tests/index/racy.c
View file @
fa399750
...
...
@@ -108,7 +108,7 @@ void test_index_racy__empty_file_after_smudge(void)
const
git_index_entry
*
entry
;
/* Make sure we do have a timestamp */
cl_git_pass
(
git_repository_index
(
&
index
,
g_repo
));
cl_git_pass
(
git_repository_index
__weakptr
(
&
index
,
g_repo
));
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_buf_joinpath
(
&
path
,
git_repository_workdir
(
g_repo
),
"A"
));
...
...
@@ -140,4 +140,7 @@ void test_index_racy__empty_file_after_smudge(void)
cl_git_pass
(
git_diff_index_to_workdir
(
&
diff
,
g_repo
,
index
,
NULL
));
cl_assert_equal_i
(
1
,
git_diff_num_deltas
(
diff
));
git_buf_free
(
&
path
);
git_diff_free
(
diff
);
}
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