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

This commit is contained in:
Takase 2023-04-19 09:02:10 +08:00 committed by George Sokianos
parent 0fae012c68
commit 46260b8073
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