Skip to content

Commit

Permalink
fix a library lookup bug on windows from the new unicode changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Jan 4, 2011
1 parent e9d9914 commit da7b6ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/string/encoding/shared.c
Expand Up @@ -1244,7 +1244,8 @@ fixed8_iter_set_and_advance(PARROT_INTERP,
ptr[iter->charpos++] = c;
iter->bytepos++;

PARROT_ASSERT(iter->bytepos <= str->bufused);
if (str->bufused < iter->bytepos)
str->bufused = iter->bytepos;
}


Expand Down

0 comments on commit da7b6ba

Please sign in to comment.