Skip to content

Commit

Permalink
Merge branch 'jn/maint-plug-leak'
Browse files Browse the repository at this point in the history
* jn/maint-plug-leak:
  write-tree: Avoid leak when index refers to an invalid object
  read-tree: stop leaking tree objects
  core: Stop leaking ondisk_cache_entrys
  • Loading branch information
Junio C Hamano committed Aug 18, 2010
2 parents cc34bb0 + b6b56ac commit 29e1353
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion cache-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,11 @@ static int update_one(struct cache_tree *it,
mode = ce->ce_mode;
entlen = pathlen - baselen;
}
if (mode != S_IFGITLINK && !missing_ok && !has_sha1_file(sha1))
if (mode != S_IFGITLINK && !missing_ok && !has_sha1_file(sha1)) {
strbuf_release(&buffer);
return error("invalid object %06o %s for '%.*s'",
mode, sha1_to_hex(sha1), entlen+baselen, path);
}

if (ce->ce_flags & CE_REMOVE)
continue; /* entry being removed */
Expand Down
5 changes: 4 additions & 1 deletion read-cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -1516,6 +1516,7 @@ static int ce_write_entry(git_SHA_CTX *c, int fd, struct cache_entry *ce)
int size = ondisk_ce_size(ce);
struct ondisk_cache_entry *ondisk = xcalloc(1, size);
char *name;
int result;

ondisk->ctime.sec = htonl(ce->ce_ctime.sec);
ondisk->mtime.sec = htonl(ce->ce_mtime.sec);
Expand All @@ -1539,7 +1540,9 @@ static int ce_write_entry(git_SHA_CTX *c, int fd, struct cache_entry *ce)
name = ondisk->name;
memcpy(name, ce->name, ce_namelen(ce));

return ce_write(c, fd, ondisk, size);
result = ce_write(c, fd, ondisk, size);
free(ondisk);
return result;
}

int write_index(struct index_state *istate, int newfd)
Expand Down
7 changes: 6 additions & 1 deletion unpack-trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ static int traverse_trees_recursive(int n, unsigned long dirmask, unsigned long
{
int i, ret, bottom;
struct tree_desc t[MAX_UNPACK_TREES];
void *buf[MAX_UNPACK_TREES];
struct traverse_info newinfo;
struct name_entry *p;

Expand All @@ -346,12 +347,16 @@ static int traverse_trees_recursive(int n, unsigned long dirmask, unsigned long
const unsigned char *sha1 = NULL;
if (dirmask & 1)
sha1 = names[i].sha1;
fill_tree_descriptor(t+i, sha1);
buf[i] = fill_tree_descriptor(t+i, sha1);
}

bottom = switch_cache_bottom(&newinfo);
ret = traverse_trees(n, t, &newinfo);
restore_cache_bottom(&newinfo, bottom);

for (i = 0; i < n; i++)
free(buf[i]);

return ret;
}

Expand Down

0 comments on commit 29e1353

Please sign in to comment.