]> git.ipfire.org Git - thirdparty/git.git/blobdiff - fast-import.c
msvc: add a Makefile target to pre-generate the Visual Studio solution
[thirdparty/git.git] / fast-import.c
index 76a7bd369987f7fed63c0f602efe59e0edbd01b8..6dfdd6801c720f3b693ca6b09f8b7b3cf0f0c764 100644 (file)
@@ -644,7 +644,7 @@ static struct tree_content *grow_tree_content(
        struct tree_content *r = new_tree_content(t->entry_count + amt);
        r->entry_count = t->entry_count;
        r->delta_depth = t->delta_depth;
-       memcpy(r->entries,t->entries,t->entry_count*sizeof(t->entries[0]));
+       COPY_ARRAY(r->entries, t->entries, t->entry_count);
        release_tree_content(t);
        return r;
 }