summaryrefslogtreecommitdiff
path: root/doc/bugs/checksum_loads_whole_file_into_memory.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-02-26 16:51:28 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-02-26 16:51:28 -0400
commitf684572aef9d12cf0881ce6cfc053a87579182a3 (patch)
treed3e32bb4cf42afd40a7cfb100f7dfaca4ed3e754 /doc/bugs/checksum_loads_whole_file_into_memory.mdwn
parent889842ab3dbde74058b4fbbc8d8061d583c4778b (diff)
close bug and changelog
finished testing recent commits, and I did solve it
Diffstat (limited to 'doc/bugs/checksum_loads_whole_file_into_memory.mdwn')
-rw-r--r--doc/bugs/checksum_loads_whole_file_into_memory.mdwn6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/bugs/checksum_loads_whole_file_into_memory.mdwn b/doc/bugs/checksum_loads_whole_file_into_memory.mdwn
index 9b121843a..ece328105 100644
--- a/doc/bugs/checksum_loads_whole_file_into_memory.mdwn
+++ b/doc/bugs/checksum_loads_whole_file_into_memory.mdwn
@@ -16,3 +16,9 @@ environment as the 6.20160217-g95bbdb8 that has the problem.
> problem got fixed. But, reverting that commit breaks the test suite on
> windows and has a FD leak, so is not desirable. This needs more
> investigation. --[[Joey]]
+
+>> I see it now, the checksum is a String and it was only forced to WHNF,
+>> so the hashing didn't fully complete and the file got buffered.
+>> Probably only occurred when fscking, and not when adding a file,
+>> due to differing use patterns of the checksum.
+>> [[fixed|done]] --[[Joey]]