Skip to content

Commit 15b7f60

Browse files
Ramsay Jonesgitster
authored andcommitted
compat/win32mmap.c: Fix some sparse warnings
Sparse issues two 'Using plain integer as NULL pointer' warnings against the call to the CreateFileMapping() function. The warnings relate to the second and sixth parameters, which both have pointer type. In order to suppress the warnings, we simply pass the NULL pointer, rather than '0', to those parameters in the function call. Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 1c31596 commit 15b7f60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compat/win32mmap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t of
2121
if (!(flags & MAP_PRIVATE))
2222
die("Invalid usage of mmap when built with USE_WIN32_MMAP");
2323

24-
hmap = CreateFileMapping((HANDLE)_get_osfhandle(fd), 0, PAGE_WRITECOPY,
25-
0, 0, 0);
24+
hmap = CreateFileMapping((HANDLE)_get_osfhandle(fd), NULL,
25+
PAGE_WRITECOPY, 0, 0, NULL);
2626

2727
if (!hmap)
2828
return MAP_FAILED;

0 commit comments

Comments
 (0)