process: style changes (#1709)

This commit is contained in:
Takase 2024-01-21 10:18:32 +08:00 committed by takase1121
parent bbc524ad82
commit b856dc371a
No known key found for this signature in database
GPG Key ID: 60EEFFC68EB3031B
1 changed files with 4 additions and 5 deletions

View File

@ -562,12 +562,11 @@ static int process_env_add(process_env_t *env_list, size_t *env_len, const char
static void process_env_free(process_env_t *list, size_t list_len) {
if (!*list) return;
#ifdef _WIN32
free(*list);
#else
for (size_t i = 0; i < list_len; i++) free((*list)[i]);
free(*list);
#ifndef _WIN32
for (size_t i = 0; i < list_len; i++)
free((*list)[i]);
#endif
free(*list);
*list = NULL;
}