* [PATCH/RFC 3/6] tag: copy parsed buffer unconditionnaly
@ 2009-02-22 18:06 Marc-André Lureau
0 siblings, 0 replies; only message in thread
From: Marc-André Lureau @ 2009-02-22 18:06 UTC (permalink / raw)
To: git
Signed-off-by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
---
tag.c | 3 +++
tag.h | 2 ++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/tag.c b/tag.c
index eecc636..b53056c 100644
--- a/tag.c
+++ b/tag.c
@@ -82,6 +82,9 @@ int parse_tag_buffer(struct tag *item, void *data,
unsigned long size)
if (date)
item->date = strtoul(++date, NULL, 10);
+ item->buffer = xmemdupz(data, size);
+ item->size = size;
+
if (!strcmp(type, blob_type)) {
item->tagged = &lookup_blob(sha1)->object;
} else if (!strcmp(type, tree_type)) {
diff --git a/tag.h b/tag.h
index e6edfcf..d7a6846 100644
--- a/tag.h
+++ b/tag.h
@@ -11,6 +11,8 @@ struct tag {
char *tag;
char *signature;
unsigned long date;
+ char *buffer;
+ unsigned long size;
};
extern struct tag *lookup_tag(const unsigned char *sha1);
--
1.6.2.rc1.28.g05ef4.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-22 18:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-22 18:06 [PATCH/RFC 3/6] tag: copy parsed buffer unconditionnaly Marc-André Lureau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).