X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/utils/blobdiff_plain/464d0c290a0bedb29326f528a1c8d4417c5153ee..1e35c5c435c4d9632875620fb8cc35ab11a1fe2f:/cvt-utf8/cvt-utf8 diff --git a/cvt-utf8/cvt-utf8 b/cvt-utf8/cvt-utf8 index c586347..c3ba0a3 100755 --- a/cvt-utf8/cvt-utf8 +++ b/cvt-utf8/cvt-utf8 @@ -180,12 +180,12 @@ def process_utf8(next): char.append(c) acc = (acc << 6) + (c & 0x3F) cbytes = cbytes - 1 - if not gotone: - c = next() if cbytes > 0: output(-1, char, " (incomplete sequence)") else: process_ucs(acc, char) + if not gotone: + c = next() def do(args): # Class to turn a list into a callable object that returns one