mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-26 03:42:28 +00:00
fix memory leak in refspec.c on errors.
This commit is contained in:
parent
4a0313bc4e
commit
64e6b5b035
@ -142,6 +142,7 @@ int git_refspec__parse(git_refspec *refspec, const char *input, bool is_fetch)
|
|||||||
giterr_set(
|
giterr_set(
|
||||||
GITERR_INVALID,
|
GITERR_INVALID,
|
||||||
"'%s' is not a valid refspec.", input);
|
"'%s' is not a valid refspec.", input);
|
||||||
|
git_refspec__free(refspec);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,6 +154,8 @@ void git_refspec__free(git_refspec *refspec)
|
|||||||
git__free(refspec->src);
|
git__free(refspec->src);
|
||||||
git__free(refspec->dst);
|
git__free(refspec->dst);
|
||||||
git__free(refspec->string);
|
git__free(refspec->string);
|
||||||
|
|
||||||
|
memset(refspec, 0x0, sizeof(git_refspec));
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *git_refspec_src(const git_refspec *refspec)
|
const char *git_refspec_src(const git_refspec *refspec)
|
||||||
|
Loading…
Reference in New Issue
Block a user