gh-128217: Validate the normalized_environment variable instead of the similarly named function (GH-128220)

This commit is contained in:
Sergey Muraviov 2024-12-24 16:06:41 +03:00 committed by GitHub
parent bd3e200cce
commit 3ddd70ceaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1048,7 +1048,7 @@ getenvironment(PyObject* environment)
} }
normalized_environment = normalize_environment(environment); normalized_environment = normalize_environment(environment);
if (normalize_environment == NULL) { if (normalized_environment == NULL) {
return NULL; return NULL;
} }