summaryrefslogtreecommitdiff
path: root/src/refs.c
diff options
context:
space:
mode:
authorRussell Belfer <arrbee@arrbee.com>2011-11-17 15:10:27 -0800
committerVicent Marti <tanoku@gmail.com>2011-11-22 01:53:56 +0100
commitb762e576c6d0118664320f50be2e5810dbed4c15 (patch)
tree2c244a57ca5167386856c573336093744464daa6 /src/refs.c
parent1d09a1c88ddde32bf9b6b5ab6a9feab2ecdaa6ff (diff)
downloadlibgit2-b762e576c6d0118664320f50be2e5810dbed4c15.tar.gz
filebuf: add GIT_FILEBUF_INIT and protect multiple opens and cleanups
Update all stack allocations of git_filebuf to use GIT_FILEBUF_INIT and make git_filebuf_open and git_filebuf_cleanup safe to be called multiple times on the same buffer. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/refs.c')
-rw-r--r--src/refs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/refs.c b/src/refs.c
index 569efbf78..5a297a516 100644
--- a/src/refs.c
+++ b/src/refs.c
@@ -285,7 +285,7 @@ cleanup:
static int loose_write(git_reference *ref)
{
- git_filebuf file;
+ git_filebuf file = GIT_FILEBUF_INIT;
char ref_path[GIT_PATH_MAX];
int error;
struct stat st;
@@ -744,7 +744,7 @@ static int packed_sort(const void *a, const void *b)
*/
static int packed_write(git_repository *repo)
{
- git_filebuf pack_file;
+ git_filebuf pack_file = GIT_FILEBUF_INIT;
int error;
unsigned int i;
char pack_file_path[GIT_PATH_MAX];