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
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
"PyUnicode_FromFormatV() expects an ASCII-encoded format "
"string, got a non-ASCII byte: 0x%02x",
(unsigned char)*f);
goto fail;
return NULL;
}
}
/* step 2: allocate memory for the results of