Fix typo in unicode_decode_call_errorhandler_writer()

Bug introduced by changeset 7ed9993d53b4.
This commit is contained in:
Victor Stinner 2013-04-17 23:58:16 +02:00
parent 8f674ccd64
commit 376cfa122d

View file

@ -4124,7 +4124,7 @@ unicode_decode_call_errorhandler_writer(
if (PyUnicode_GET_LENGTH(repunicode) > 1)
writer->overallocate = 1;
if (_PyUnicodeWriter_WriteStr(writer, repunicode) == -1)
return
goto onError;
*endinpos = newpos;
*inptr = *input + newpos;