Diff
Not logged in

Differences From:

File src/blob.c part of check-in [33c31f73cd] - Record whether or not files have their execute permission bit set. Set or clear the execute permission bit upon checkout. by drh on 2008-02-21 14:27:34. Also file src/blob.c part of check-in [588bb7cd73] - Merged to ed26056bb5. by aku on 2008-02-24 18:50:35. [view]

To:

File src/blob.c part of check-in [61ddd63b72] - Work toward making fossil work better on large repositories. This version implements a cache in the content manager. It is not clear yet if this is necessarily a good idea - this check-in might end up on an abandoned branch at some point. by drh on 2008-03-06 22:58:48. [view]

@@ -207,9 +207,8 @@
 ** Copy a blob
 */
 void blob_copy(Blob *pTo, Blob *pFrom){
   blob_is_init(pFrom);
-  blob_is_init(pTo);
   blob_zero(pTo);
   blob_append(pTo, blob_buffer(pFrom), blob_size(pFrom));
 }