Re: [PATCH] index-pack: correctly initialize appended objects

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Nicolas Pitre <nico@...>
Cc: Johannes Schindelin <Johannes.Schindelin@...>, <spearce@...>, <git@...>, Björn <B.Steinbrink@...>
Date: Friday, July 25, 2008 - 2:15 pm

Nicolas Pitre <nico@cam.org> writes:


Thanks.  Here is what I committed.

commit 72de2883bd7d4ceda05f107826c7607c594de965
Author: Björn Steinbrink <B.Steinbrink@gmx.de>
Date:   Thu Jul 24 18:32:00 2008 +0100

    index-pack.c: correctly initialize appended objects
    
    When index-pack completes a thin pack it appends objects to the pack.
    Since the commit 92392b4(index-pack: Honor core.deltaBaseCacheLimit when
    resolving deltas) such an object can be pruned in case of memory
    pressure, and will be read back again by get_data_from_pack().  For this
    to work, the fields in object_entry structure need to be initialized
    properly.
    
    Noticed by Pierre Habouzit.
    
    Signed-off-by: Björn Steinbrink <B.Steinbrink@gmx.de>
    Acked-by: Nicolas Pitre <nico@cam.org>
    Acked-by: Shawn O. Pearce <spearce@spearce.org>
    Signed-off-by: Junio C Hamano <gitster@pobox.com>

diff --git a/index-pack.c b/index-pack.c
index c359f8c..7d5344a 100644
--- a/index-pack.c
+++ b/index-pack.c
@@ -698,6 +698,10 @@ static struct object_entry *append_obj_to_pack(
 	write_or_die(output_fd, header, n);
 	obj[0].idx.crc32 = crc32(0, Z_NULL, 0);
 	obj[0].idx.crc32 = crc32(obj[0].idx.crc32, header, n);
+	obj[0].size = size;
+	obj[0].hdr_size = n;
+	obj[0].type = type;
+	obj[0].real_type = type;
 	obj[1].idx.offset = obj[0].idx.offset + n;
 	obj[1].idx.offset += write_compressed(output_fd, buf, size, &obj[0].idx.crc32);
 	hashcpy(obj->idx.sha1, sha1);
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] index-pack: correctly initialize appended objects, Johannes Schindelin, (Thu Jul 24, 1:32 pm)
Re: [PATCH] index-pack: correctly initialize appended objects, Johannes Schindelin, (Fri Jul 25, 9:15 am)
Re: [PATCH] index-pack: correctly initialize appended objects, Johannes Schindelin, (Fri Jul 25, 11:04 pm)
Re: [PATCH] index-pack: correctly initialize appended objects, Shawn O. Pearce, (Fri Jul 25, 12:42 pm)
Re: [PATCH] index-pack: correctly initialize appended objects, Johannes Schindelin, (Fri Jul 25, 6:24 am)
Re: [PATCH] index-pack: correctly initialize appended objects, Junio C Hamano, (Fri Jul 25, 2:15 pm)