Fix bogus assertion.

This commit is contained in:
Alexandre Vassalotti 2008-12-27 09:49:09 +00:00
parent 3cfcab9592
commit bad1b9219b

View file

@ -3845,7 +3845,7 @@ static PyObject *unicode_encode_ucs1(const Py_UNICODE *p,
/* Resize if we allocated to much */ /* Resize if we allocated to much */
size = str - PyBytes_AS_STRING(res); size = str - PyBytes_AS_STRING(res);
if (size < ressize) { /* If this falls res will be NULL */ if (size < ressize) { /* If this falls res will be NULL */
assert(size > 0); assert(size >= 0);
if (_PyBytes_Resize(&res, size) < 0) if (_PyBytes_Resize(&res, size) < 0)
goto onError; goto onError;
} }