aboutsummaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-08-27 14:33:42 -0700
committerJunio C Hamano <gitster@pobox.com>2018-08-27 14:33:42 -0700
commit7ae96e3fcfcd4f3d7c18965eb8805554a9e432bc (patch)
treecd741e42d51387ffcfd7baeaa79e27ba5b45d3ae /http.c
parenta988ce9a580bb1cae6fbeead69eff53b113a373c (diff)
parentce528de023f82d767096b0342b6da8039feff7bc (diff)
downloadgit-7ae96e3fcfcd4f3d7c18965eb8805554a9e432bc.tar.xz
Merge branch 'ab/unconditional-free-and-null'
Code clean-up. * ab/unconditional-free-and-null: refactor various if (x) FREE_AND_NULL(x) to just FREE_AND_NULL(x)
Diffstat (limited to 'http.c')
-rw-r--r--http.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/http.c b/http.c
index b4bfbceaeb..4162860ee3 100644
--- a/http.c
+++ b/http.c
@@ -2418,9 +2418,7 @@ void release_http_object_request(struct http_object_request *freq)
close(freq->localfile);
freq->localfile = -1;
}
- if (freq->url != NULL) {
- FREE_AND_NULL(freq->url);
- }
+ FREE_AND_NULL(freq->url);
if (freq->slot != NULL) {
freq->slot->callback_func = NULL;
freq->slot->callback_data = NULL;