]> git.ipfire.org Git - thirdparty/git.git/blobdiff - http.c
Merge branch 'jk/strbuf-read-file-close-error'
[thirdparty/git.git] / http.c
diff --git a/http.c b/http.c
index 31755023a4f161590a63ed5597612187d31d9aa9..8c11156ae37591d311d0a3e9ac18c044ceb55e1c 100644 (file)
--- a/http.c
+++ b/http.c
@@ -1260,14 +1260,14 @@ static struct fill_chain *fill_cfg;
 
 void add_fill_function(void *data, int (*fill)(void *))
 {
-       struct fill_chain *new = xmalloc(sizeof(*new));
+       struct fill_chain *new_fill = xmalloc(sizeof(*new_fill));
        struct fill_chain **linkp = &fill_cfg;
-       new->data = data;
-       new->fill = fill;
-       new->next = NULL;
+       new_fill->data = data;
+       new_fill->fill = fill;
+       new_fill->next = NULL;
        while (*linkp)
                linkp = &(*linkp)->next;
-       *linkp = new;
+       *linkp = new_fill;
 }
 
 void fill_active_slots(void)