diff mbox series

upload-pack: fix a sparse '0 as NULL pointer' warning

Message ID 494e000a-17a5-b730-b032-1fc0e8690c07@ramsayjones.plus.com (mailing list archive)
State New, archived
Headers show
Series upload-pack: fix a sparse '0 as NULL pointer' warning | expand

Commit Message

Ramsay Jones June 15, 2020, 11 p.m. UTC
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---

Hi Jonathan,

If you need to re-roll your 'jt/cdn-offload' branch, could you please
squash this into the relevant patch (commit dd4b732df7 (upload-pack: send
part of packfile response as uri, 2020-06-10)).

Thanks!

ATB,
Ramsay Jones

 upload-pack.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/upload-pack.c b/upload-pack.c
index b4fd85fb9a..951a2b23aa 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -1246,7 +1246,7 @@  void upload_pack(struct upload_pack_options *options)
 		receive_needs(&data, &reader);
 		if (data.want_obj.nr) {
 			get_common_commits(&data, &reader);
-			create_pack_file(&data, 0);
+			create_pack_file(&data, NULL);
 		}
 	}