From: Walter Dörwald Date: Thu, 30 Aug 2007 15:34:55 +0000 (+0000) Subject: Set startinpos before calling the error handler. X-Git-Tag: v2.6a1~1383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d04542cc96b9b23c22dd55880e51fe063604ddb;p=python Set startinpos before calling the error handler. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index f54e7b23a8..26aa7533ba 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1028,6 +1028,7 @@ PyObject *PyUnicode_DecodeUTF7(const char *s, } } else if (SPECIAL(ch,0,0)) { + startinpos = s-starts; errmsg = "unexpected special character"; s++; goto utf7Error;