bpo-38236: Fix init_dump_ascii_wstr() (GH-16333)

Add missing "return;" (to not dereference NULL pointer).
This commit is contained in:
Victor Stinner 2019-09-23 15:35:46 +02:00 committed by GitHub
parent fcdb027234
commit 88e6447451
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2547,6 +2547,7 @@ init_dump_ascii_wstr(const wchar_t *str)
{
if (str == NULL) {
PySys_WriteStderr("(not set)");
return;
}
PySys_WriteStderr("'");