win32: remove lock file upon shutdown

Upon named shutdown, the lock file should not just be unlocked but also
removed.

(cherry picked from commit c506077da5)
This commit is contained in:
Michał Kępień 2019-04-19 10:59:41 +02:00
parent 2adc28712d
commit 8e18f02626

View file

@ -350,9 +350,9 @@ ns_os_shutdown(void) {
if (lockfilefd != -1) {
(void) UnlockFile((HANDLE) _get_osfhandle(lockfilefd),
0, 0, 0, 1);
close(lockfilefd);
lockfilefd = -1;
}
cleanup_lockfile();
ntservice_shutdown(); /* This MUST be the last thing done */
}