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 bd93e5a4b6
commit c0c2e7222e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,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