win32: remove lock file upon shutdown

Upon named shutdown, the lock file should not just be unlocked but also
removed.
This commit is contained in:
Michał Kępień 2019-04-19 10:59:41 +02:00
parent 9fceb376c6
commit c506077da5

View file

@ -348,9 +348,9 @@ named_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 */
}