summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/describe.c2
-rw-r--r--src/remote.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/describe.c b/src/describe.c
index 2640c1cd8..a193fcbcb 100644
--- a/src/describe.c
+++ b/src/describe.c
@@ -725,7 +725,7 @@ int git_describe_workdir(
git_oid current_id;
git_status_list *status = NULL;
git_status_options status_opts = GIT_STATUS_OPTIONS_INIT;
- git_describe_result *result;
+ git_describe_result *result = NULL;
git_object *commit;
if ((error = git_reference_name_to_id(&current_id, repo, GIT_HEAD_FILE)) < 0)
diff --git a/src/remote.c b/src/remote.c
index 4629175d0..0ae377e47 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -1691,7 +1691,7 @@ int git_remote_rename(git_strarray *out, git_repository *repo, const char *name,
{
int error;
git_vector problem_refspecs = GIT_VECTOR_INIT;
- git_remote *remote;
+ git_remote *remote = NULL;
assert(out && repo && name && new_name);