]> git.ipfire.org Git - thirdparty/git.git/blobdiff - commit.c
[PATCH] Avoid wasting memory in git-rev-list
[thirdparty/git.git] / commit.c
index 2f73cf3d9085a620bedd32e818942a11febab44f..f735f981bb2d4d7594e416bcb728ac06d09ebd0c 100644 (file)
--- a/commit.c
+++ b/commit.c
@@ -3,6 +3,8 @@
 #include "commit.h"
 #include "cache.h"
 
+int save_commit_buffer = 1;
+
 struct sort_node
 {
        /*
@@ -264,7 +266,7 @@ int parse_commit(struct commit *item)
                             sha1_to_hex(item->object.sha1));
        }
        ret = parse_commit_buffer(item, buffer, size);
-       if (!ret) {
+       if (save_commit_buffer && !ret) {
                item->buffer = buffer;
                return 0;
        }