SIGN IN SIGN UP

Issue #18408: Fix usage of _PyBytes_Resize()

_PyBytes_Resize(&v, new_size) sets v to NULL on error, so v cannot be used
anymore. Replace "Py_DECREF(v); v = NULL;" with "Py_CLEAR(v);".
V
Victor Stinner committed
79799266165b5d8d4e8b9b007d81ba3b00197ca9
Parent: e0af3a8