mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
fix dead assignments
This commit is contained in:
parent
5a09b09fe3
commit
4233f6a9d6
9 changed files with 27 additions and 26 deletions
|
@ -746,13 +746,13 @@ GSUnicode(const unichar *chars, unsigned length,
|
|||
if (isLatin1) *isLatin1 = YES;
|
||||
while (i < length)
|
||||
{
|
||||
if ((c = chars[i++]) > 127)
|
||||
if (chars[i++] > 127)
|
||||
{
|
||||
if (isASCII) *isASCII = NO;
|
||||
i--;
|
||||
while (i < length)
|
||||
{
|
||||
if ((c = chars[i++]) > 255)
|
||||
if (chars[i++] > 255)
|
||||
{
|
||||
if (isLatin1) *isLatin1 = NO;
|
||||
i--;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue