Kaydet (Commit) d4ac96a3 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

use return NULL; it's just as correct

üst 62d52fd9
...@@ -769,7 +769,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs) ...@@ -769,7 +769,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
"PyUnicode_FromFormatV() expects an ASCII-encoded format " "PyUnicode_FromFormatV() expects an ASCII-encoded format "
"string, got a non-ASCII byte: 0x%02x", "string, got a non-ASCII byte: 0x%02x",
(unsigned char)*f); (unsigned char)*f);
goto fail; return NULL;
} }
} }
/* step 2: allocate memory for the results of /* step 2: allocate memory for the results of
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment