https://github.com/git/git
Revision 2cdf9509df66358f83a577caf83dc06e3161ec3c authored by Linus Torvalds on 11 January 2007, 20:25:16 UTC, committed by Junio C Hamano on 11 January 2007, 20:25:16 UTC
It is not used after getting written, and just is leaking every time
we write the index out.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 2a3a3c2
Raw File
Tip revision: 2cdf9509df66358f83a577caf83dc06e3161ec3c authored by Linus Torvalds on 11 January 2007, 20:25:16 UTC
write-cache: do not leak the serialized cache-tree data.
Tip revision: 2cdf950
exec_cmd.h
#ifndef __GIT_EXEC_CMD_H_
#define __GIT_EXEC_CMD_H_

extern void git_set_exec_path(const char *exec_path);
extern const char* git_exec_path(void);
extern int execv_git_cmd(const char **argv); /* NULL terminated */
extern int execl_git_cmd(const char *cmd, ...);


#endif /* __GIT_EXEC_CMD_H_ */
back to top