summaryrefslogtreecommitdiffstats
path: root/object.c
Commit message (Expand)AuthorAgeFilesLines
* object: call "check_sha1_signature" with the replacement sha1Christian Couder2009-05-311-4/+5
* Unify signedness in hashing callsDan McGee2009-05-201-4/+4
* Fix type-punning issuesDan McGee2009-05-161-1/+2
* bundle: allow the same ref to be given more than onceJunio C Hamano2009-01-171-0/+19
* parse_object_buffer: don't ignore errors from the object specific parsing fun...Martin Koegler2008-02-031-4/+8
* Don't dereference NULL upon lookup failure.Jim Meyering2007-12-221-13/+22
* Don't assume tree entries that are not dirs are blobsSam Vilain2007-06-061-0/+3
* Merge branch 'maint-1.5.1' into maintJunio C Hamano2007-05-241-0/+1
|\
| * fix memory leak in parse_object when check_sha1_signature failsCarlos Rica2007-05-241-0/+1
* | add add_object_array_with_modeMartin Koegler2007-04-241-0/+6
* | Clean up object creation to use more common codeLinus Torvalds2007-04-161-7/+7
* | Use proper object allocators for unknown object nodes tooLinus Torvalds2007-04-161-12/+3
|/
* Don't ever return corrupt objects from "parse_object()"Linus Torvalds2007-03-201-2/+4
* get rid of lookup_object_type()Nicolas Pitre2007-02-271-18/+0
* convert object type handling from a string to a numberNicolas Pitre2007-02-271-8/+8
* formalize typename(), and add its reverse type_from_string()Nicolas Pitre2007-02-271-3/+23
* Add git-for-each-ref: helper for language bindingsJunio C Hamano2006-09-161-27/+41
* Use xcalloc instead of callocJonas Fonseca2006-08-271-1/+1
* Convert memcpy(a,b,20) to hashcpy(a,b).Shawn Pearce2006-08-231-1/+1
* Do not use memcmp(sha1_1, sha1_2, 20) with hardcoded length.David Rientjes2006-08-171-1/+1
* Remove TYPE_* constant macros and use object_type enums consistently.Linus Torvalds2006-07-121-3/+4
* git object hash cleanupsLinus Torvalds2006-07-011-44/+53
* Abstract out accesses to object hash arrayLinus Torvalds2006-06-291-3/+12
* Add "named object array" conceptLinus Torvalds2006-06-191-0/+17
* Remove "refs" field from "struct object"Linus Torvalds2006-06-181-70/+0
* Shrink "struct object" a bitLinus Torvalds2006-06-171-2/+6
* Make "tree_entry" have a SHA1 instead of a union of object pointersLinus Torvalds2006-05-291-1/+1
* Make "struct tree" contain the pointer to the tree bufferLinus Torvalds2006-05-291-1/+4
* Replace xmalloc+memset(0) with xcalloc.Peter Eriksen2006-04-041-4/+2
* Use blob_, commit_, tag_, and tree_type throughout.Peter Eriksen2006-04-041-4/+4
* Fix object re-hashingLinus Torvalds2006-02-121-1/+1
* hashtable-based objects: minimum fixups.Junio C Hamano2006-02-121-2/+4
* Use a hashtable for objects instead of a sorted listJohannes Schindelin2006-02-121-29/+40
* [PATCH] Compilation: zero-length array declaration.Junio C Hamano2006-01-071-1/+1
* qsort() ptrdiff_t may be larger than intJunio C Hamano2005-12-061-1/+6
* Rework object refs tracking to reduce memory usageSergey Vlasov2005-11-151-18/+44
* [PATCH] Avoid building object ref lists when not neededLinus Torvalds2005-09-161-3/+10
* [PATCH] Add function to append to an object_list.Daniel Barkalow2005-09-101-0/+11
* [PATCH] Object library enhancementsbarkalow@iabervon.org2005-08-021-1/+54
* [PATCH] Remove "delta" object representation.Junio C Hamano2005-06-271-18/+6
* [PATCH] Parse tags for absent objectsDaniel Barkalow2005-06-211-0/+16
* [PATCH] Anal retentive 'const unsigned char *sha1'Jason McMullan2005-06-081-4/+4
* Make "parse_object()" also fill in commit message buffer data.Linus Torvalds2005-05-251-0/+4
* Include file cleanups..Linus Torvalds2005-05-221-2/+0
* [PATCH] delta checkNicolas Pitre2005-05-201-2/+9
* [PATCH] don't load and decompress objects twice with parse_object()Nicolas Pitre2005-05-061-14/+16
* [PATCH] Fix memory leaks in git-fsck-cacheSergey Vlasov2005-05-041-1/+2
* [PATCH] Add function to parse an object of unspecified type (take 2)Daniel Barkalow2005-04-281-0/+40
* [PATCH] introduce xmalloc and xreallocChristopher Li2005-04-261-2/+2
* [PATCH] Implementations of parsing functionsDaniel Barkalow2005-04-181-0/+96