use return NULL; it's just as correct

This commit is contained in:
Benjamin Peterson 2010-09-12 16:40:53 +00:00
parent 62d52fd966
commit d4ac96a336

View File

@ -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