Correct check of PyUnicode_Resize() return value.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index c3beda9..5e74929 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2381,7 +2381,8 @@
 					   to avoid reallocations */
 					if (need < 2 * outlen)
 						need = 2 * outlen;
-					if (PyUnicode_Resize(&result, need)) {
+					if (PyUnicode_Resize(
+						&result, need) < 0) {
 						Py_DECREF(item);
 						goto Fail_1;
 					}