fix(process): check for HANDLE_INVALID (#1475)

This commit is contained in:
Takase 2023-04-19 09:02:10 +08:00 committed by GitHub
parent 76ec16f299
commit 246d4fc93f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ typedef enum {
} filed_e;
static void close_fd(process_stream_t *handle) {
if (*handle) {
if (*handle && *handle != HANDLE_INVALID) {
#ifdef _WIN32
CloseHandle(*handle);
#else