mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
14ba97f81c
We have to convert all of the alloc functions at once, because alloc_report uses a funky macro for reporting. It is better for the sake of mechanical conversion to convert multiple functions at once rather than changing the structure of the reporting function. We record all memory allocation in alloc.c, and free them in clear_alloc_state, which is called for all repositories except the_repository. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
21 lines
483 B
C
21 lines
483 B
C
#include "cache.h"
|
|
#include "blob.h"
|
|
#include "repository.h"
|
|
#include "alloc.h"
|
|
|
|
const char *blob_type = "blob";
|
|
|
|
struct blob *lookup_blob(const struct object_id *oid)
|
|
{
|
|
struct object *obj = lookup_object(oid->hash);
|
|
if (!obj)
|
|
return create_object(the_repository, oid->hash,
|
|
alloc_blob_node(the_repository));
|
|
return object_as_type(obj, OBJ_BLOB, 0);
|
|
}
|
|
|
|
int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size)
|
|
{
|
|
item->object.parsed = 1;
|
|
return 0;
|
|
}
|