pretend-sha1: grave bugfix.
We stashed away objects that we pretend to have, but did not save the actual data. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
204d409247
commit
efa13f7b7e
@ -1545,6 +1545,8 @@ int pretend_sha1_file(void *buf, unsigned long len, const char *type, unsigned c
|
|||||||
co = &cached_objects[cached_object_nr++];
|
co = &cached_objects[cached_object_nr++];
|
||||||
co->size = len;
|
co->size = len;
|
||||||
co->type = strdup(type);
|
co->type = strdup(type);
|
||||||
|
co->buf = xmalloc(len);
|
||||||
|
memcpy(co->buf, buf, len);
|
||||||
hashcpy(co->sha1, sha1);
|
hashcpy(co->sha1, sha1);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user