commit | d4ac96a3363b7bb9f587abfd41fda3299391fb7d | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 12 16:40:53 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 12 16:40:53 2010 +0000 |
tree | fe5ed6e99b6ccc592127742595849d0a156141f6 | |
parent | 62d52fd966af1606a0c0418aa532bbf197842e1a [diff] [blame] |
use return NULL; it's just as correct
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 92df1ce..489c98c 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -769,7 +769,7 @@ "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