mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-08 01:20:53 +00:00

In-memory tree objects were not being properly initialized, because the internal entries vector was created on the 'parse' method. Signed-off-by: Vicent Marti <tanoku@gmail.com>
27 lines
455 B
C
27 lines
455 B
C
#ifndef INCLUDE_tree_h__
|
|
#define INCLUDE_tree_h__
|
|
|
|
#include "git2/tree.h"
|
|
#include "repository.h"
|
|
#include "vector.h"
|
|
|
|
struct git_tree_entry {
|
|
unsigned int attr;
|
|
char *filename;
|
|
git_oid oid;
|
|
|
|
git_tree *owner;
|
|
};
|
|
|
|
struct git_tree {
|
|
git_object object;
|
|
git_vector entries;
|
|
};
|
|
|
|
void git_tree__free(git_tree *tree);
|
|
git_tree *git_tree__new(void);
|
|
int git_tree__parse(git_tree *tree);
|
|
int git_tree__writeback(git_tree *tree, git_odb_source *src);
|
|
|
|
#endif
|