| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d8b5b94 commit 68687d3
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -179,9 +179,7 @@ Local<Array> RealEnvStore::Enumerate(Isolate* isolate) const { | |||
| 179 | 179 | for (int i = 0; i < count; i++) { | |
| 180 | 180 | #ifdef _WIN32 | |
| 181 | 181 | // If the key starts with '=' it is a hidden environment variable. | |
| 182 | - // The '\0' check is a workaround for the bug behind | ||
| 183 | - // https://github.com/libuv/libuv/pull/2473 and can be removed later. | ||
| 184 | - if (items[i].name[0] == '=' || items[i].name[0] == '\0') continue; | ||
| 182 | + if (items[i].name[0] == '=') continue; | ||
| 185 | 183 | #endif | |
| 186 | 184 | MaybeLocal<String> str = String::NewFromUtf8(isolate, items[i].name); | |
| 187 | 185 | if (str.IsEmpty()) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments