From: Jeremy Hylton Date: Tue, 16 Sep 2003 03:17:16 +0000 (+0000) Subject: Correct check of PyUnicode_Resize() return value. X-Git-Tag: v2.4a1~1574 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=364f6becadd79698f8cb2593be7510cd7fe938a6;p=python Correct check of PyUnicode_Resize() return value. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index c3beda9c0c..5e74929e4a 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2381,7 +2381,8 @@ filterunicode(PyObject *func, PyObject *strobj) 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; }