]> git.ipfire.org Git - thirdparty/git.git/commitdiff
grep: store grep_source buffer as const
authorJeff King <peff@peff.net>
Tue, 21 Sep 2021 03:51:28 +0000 (23:51 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Sep 2021 18:59:50 +0000 (11:59 -0700)
Our grep_buffer() function takes a non-const buffer, which is confusing:
we don't take ownership of nor write to the buffer.

This mostly comes from the fact that the underlying grep_source struct
in which we store the buffer uses non-const pointer. The memory pointed
to by the struct is sometimes owned by us (for FILE or OID sources), and
sometimes not (for BUF sources).

Let's store it as const, which lets us err on the side of caution (i.e.,
the compiler will warn us if any of our code writes to or tries to free
it).

As a result, we must annotate the one place where we do free it by
casting away the constness. But that's a small price to pay for the
extra safety and clarity elsewhere (and indeed, it already had a comment
explaining why GREP_SOURCE_BUF _didn't_ free it).

And then we can mark grep_buffer() as taking a const buffer.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
grep.c
grep.h

diff --git a/grep.c b/grep.c
index 9603ac119df4021e8576eecabc4206c9c69c31be..14fe8a0fd23a9e4d196c7813c64b8e24edb74a6f 100644 (file)
--- a/grep.c
+++ b/grep.c
@@ -1821,7 +1821,8 @@ int grep_source(struct grep_opt *opt, struct grep_source *gs)
        return grep_source_1(opt, gs, 0);
 }
 
-static void grep_source_init_buf(struct grep_source *gs, char *buf,
+static void grep_source_init_buf(struct grep_source *gs,
+                                const char *buf,
                                 unsigned long size)
 {
        gs->type = GREP_SOURCE_BUF;
@@ -1833,7 +1834,7 @@ static void grep_source_init_buf(struct grep_source *gs, char *buf,
        gs->identifier = NULL;
 }
 
-int grep_buffer(struct grep_opt *opt, char *buf, unsigned long size)
+int grep_buffer(struct grep_opt *opt, const char *buf, unsigned long size)
 {
        struct grep_source gs;
        int r;
@@ -1885,7 +1886,9 @@ void grep_source_clear_data(struct grep_source *gs)
        switch (gs->type) {
        case GREP_SOURCE_FILE:
        case GREP_SOURCE_OID:
-               FREE_AND_NULL(gs->buf);
+               /* these types own the buffer */
+               free((char *)gs->buf);
+               gs->buf = NULL;
                gs->size = 0;
                break;
        case GREP_SOURCE_BUF:
diff --git a/grep.h b/grep.h
index 128007db655e4e2def53e17cfd2a0d0ee3fefa18..3cb8a83ae8ca584bc1b3f7a5d0e9dd6b92381777 100644 (file)
--- a/grep.h
+++ b/grep.h
@@ -189,7 +189,7 @@ void append_grep_pattern(struct grep_opt *opt, const char *pat, const char *orig
 void append_header_grep_pattern(struct grep_opt *, enum grep_header_field, const char *);
 void compile_grep_patterns(struct grep_opt *opt);
 void free_grep_patterns(struct grep_opt *opt);
-int grep_buffer(struct grep_opt *opt, char *buf, unsigned long size);
+int grep_buffer(struct grep_opt *opt, const char *buf, unsigned long size);
 
 struct grep_source {
        char *name;
@@ -202,7 +202,7 @@ struct grep_source {
        void *identifier;
        struct repository *repo; /* if GREP_SOURCE_OID */
 
-       char *buf;
+       const char *buf;
        unsigned long size;
 
        char *path; /* for attribute lookups */