summaryrefslogtreecommitdiff
path: root/object.c
AgeCommit message (Expand)AuthorFilesLines
2013-03-17avoid segfaults on parse_object failureLibravatar Jeff King1-0/+10
2012-04-30remove superfluous newlines in error messagesLibravatar Pete Wyckoff1-3/+3
2012-04-24Merge branch 'hv/submodule-recurse-push'Libravatar Junio C Hamano1-0/+11
2012-03-30Teach revision walking machinery to walk multiple times sequenciallyLibravatar Heiko Voigt1-0/+11
2012-03-07parse_object: avoid putting whole blob in coreLibravatar Nguyễn Thái Ngọc Duy1-0/+11
2012-01-05parse_object: try internal cache before reading object dbLibravatar Jeff King1-2/+7
2011-11-16receive-pack, fetch-pack: reject bogus pack that records objects twiceLibravatar Junio C Hamano1-0/+2
2011-05-15read_sha1_file(): get rid of read_sha1_file_repl() madnessLibravatar Junio C Hamano1-2/+2
2010-09-06Merge branch 'maint'Libravatar Junio C Hamano1-4/+4
2010-09-06Merge branch 'xx/trivial' into maintLibravatar Junio C Hamano1-4/+4
2010-09-05Fix whitespace issue in object.cLibravatar Jared Hance1-4/+4
2010-09-03Merge branch 'nd/maint-fix-replace'Libravatar Junio C Hamano1-1/+1
2010-09-03parse_object: pass on the original sha1, not the replaced oneLibravatar Nguyễn Thái Ngọc Duy1-1/+1
2010-04-19fix "bundle --stdin" segfaultLibravatar Jonathan Nieder1-2/+2
2010-01-17object.c: remove unused functionsLibravatar Junio C Hamano1-21/+0
2009-05-31object: call "check_sha1_signature" with the replacement sha1Libravatar Christian Couder1-4/+5
2009-05-20Unify signedness in hashing callsLibravatar Dan McGee1-4/+4
2009-05-16Fix type-punning issuesLibravatar Dan McGee1-1/+2
2009-01-17bundle: allow the same ref to be given more than onceLibravatar Junio C Hamano1-0/+19
2008-02-03parse_object_buffer: don't ignore errors from the object specific parsing fun...Libravatar Martin Koegler1-4/+8
2007-12-22Don't dereference NULL upon lookup failure.Libravatar Jim Meyering1-13/+22
2007-06-06Don't assume tree entries that are not dirs are blobsLibravatar Sam Vilain1-0/+3
2007-05-24Merge branch 'maint-1.5.1' into maintLibravatar Junio C Hamano1-0/+1
2007-05-24fix memory leak in parse_object when check_sha1_signature failsLibravatar Carlos Rica1-0/+1
2007-04-24add add_object_array_with_modeLibravatar Martin Koegler1-0/+6
2007-04-16Clean up object creation to use more common codeLibravatar Linus Torvalds1-7/+7
2007-04-16Use proper object allocators for unknown object nodes tooLibravatar Linus Torvalds1-12/+3
2007-03-20Don't ever return corrupt objects from "parse_object()"Libravatar Linus Torvalds1-2/+4
2007-02-27get rid of lookup_object_type()Libravatar Nicolas Pitre1-18/+0
2007-02-27convert object type handling from a string to a numberLibravatar Nicolas Pitre1-8/+8
2007-02-27formalize typename(), and add its reverse type_from_string()Libravatar Nicolas Pitre1-3/+23
2006-09-16Add git-for-each-ref: helper for language bindingsLibravatar Junio C Hamano1-27/+41
2006-08-27Use xcalloc instead of callocLibravatar Jonas Fonseca1-1/+1
2006-08-23Convert memcpy(a,b,20) to hashcpy(a,b).Libravatar Shawn Pearce1-1/+1
2006-08-17Do not use memcmp(sha1_1, sha1_2, 20) with hardcoded length.Libravatar David Rientjes1-1/+1
2006-07-12Remove TYPE_* constant macros and use object_type enums consistently.Libravatar Linus Torvalds1-3/+4
2006-07-01git object hash cleanupsLibravatar Linus Torvalds1-44/+53
2006-06-29Abstract out accesses to object hash arrayLibravatar Linus Torvalds1-3/+12
2006-06-19Add "named object array" conceptLibravatar Linus Torvalds1-0/+17
2006-06-18Remove "refs" field from "struct object"Libravatar Linus Torvalds1-70/+0
2006-06-17Shrink "struct object" a bitLibravatar Linus Torvalds1-2/+6
2006-05-29Make "tree_entry" have a SHA1 instead of a union of object pointersLibravatar Linus Torvalds1-1/+1
2006-05-29Make "struct tree" contain the pointer to the tree bufferLibravatar Linus Torvalds1-1/+4
2006-04-04Replace xmalloc+memset(0) with xcalloc.Libravatar Peter Eriksen1-4/+2
2006-04-04Use blob_, commit_, tag_, and tree_type throughout.Libravatar Peter Eriksen1-4/+4
2006-02-12Fix object re-hashingLibravatar Linus Torvalds1-1/+1
2006-02-12hashtable-based objects: minimum fixups.Libravatar Junio C Hamano1-2/+4
2006-02-12Use a hashtable for objects instead of a sorted listLibravatar Johannes Schindelin1-29/+40
2006-01-07[PATCH] Compilation: zero-length array declaration.Libravatar Junio C Hamano1-1/+1
2005-12-06qsort() ptrdiff_t may be larger than intLibravatar Junio C Hamano1-1/+6