Skip to content

Commit

Permalink
src: use exact return value for uv_os_getenv
Browse files Browse the repository at this point in the history
PR-URL: #49149
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
  • Loading branch information
anonrig authored and targos committed Nov 11, 2023
1 parent b80e949 commit 5131fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_credentials.cc
Expand Up @@ -116,7 +116,7 @@ bool SafeGetenv(const char* key,
ret = uv_os_getenv(key, *val, &init_sz);
}

if (ret >= 0) { // Env key value fetch success.
if (ret == 0) { // Env key value fetch success.
*text = *val;
return true;
}
Expand Down

0 comments on commit 5131fde

Please sign in to comment.