summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 09895c1)
raw | patch | inline | side by side (parent: 09895c1)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 6 May 2006 05:38:06 +0000 (22:38 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 6 May 2006 05:40:45 +0000 (22:40 -0700) |
prefix_path() sometimes allocates new memory and returns it, and
other times returns the incoming path argument intact. The
callers need to be a bit careful not to leak memory.
Signed-off-by: Junio C Hamano <junkio@cox.net>
other times returns the incoming path argument intact. The
callers need to be a bit careful not to leak memory.
Signed-off-by: Junio C Hamano <junkio@cox.net>
checkout-index.c | patch | blob | history |
diff --git a/checkout-index.c b/checkout-index.c
index dd6a2d86fe59f1c75659cccef7a19c42bd2f721c..0b9cabc61cafa06501064c0b2cccbc3d434904c2 100644 (file)
--- a/checkout-index.c
+++ b/checkout-index.c
/* Check out named files first */
for ( ; i < argc; i++) {
const char *arg = argv[i];
+ const char *p;
if (all)
die("git-checkout-index: don't mix '--all' and explicit filenames");
if (read_from_stdin)
die("git-checkout-index: don't mix '--stdin' and explicit filenames");
- checkout_file(prefix_path(prefix, prefix_length, arg));
+ p = prefix_path(prefix, prefix_length, arg);
+ checkout_file(p);
+ if (p != arg)
+ free((char*)p);
}
if (read_from_stdin) {
strbuf_init(&buf);
while (1) {
char *path_name;
+ const char *p;
+
read_line(&buf, stdin, line_termination);
if (buf.eof)
break;
path_name = unquote_c_style(buf.buf, NULL);
else
path_name = buf.buf;
- checkout_file(prefix_path(prefix, prefix_length, path_name));
+ p = prefix_path(prefix, prefix_length, path_name);
+ checkout_file(p);
+ if (p != path_name)
+ free((char *)p);
if (path_name != buf.buf)
free(path_name);
}