mirror of
https://github.com/reactos/reactos.git
synced 2026-06-09 01:12:59 +08:00
[ROSAPPS][PICE] Fix a glitch at two places where code intends to replace invalid chars with spaces ROSAPPS-353
Found by some static code analysis tool reporting 'Condition always false'. The fix is a selective back-port from the more recent version of pICE hardware.c Revision: 1.6, Date: 2004/02/17 23:07:36 The most recent source of pICE atm can be found at https://sourceforge.net/projects/pice/files/pICE%20source/build_20/ Thanks to DougLyons and JIRA user 'maddin200'.
This commit is contained in:
@@ -283,7 +283,7 @@ BOOLEAN AddToRingBuffer(LPSTR p)
|
||||
}
|
||||
else
|
||||
{
|
||||
if((UCHAR)p[i]<0x20 && (UCHAR)p[i]>0x7f)
|
||||
if((UCHAR)p[i]<0x20 || (UCHAR)p[i]>0x7f)
|
||||
p[i]=0x20;
|
||||
|
||||
aBuffers[ulInPos][j++] = p[i];
|
||||
@@ -873,7 +873,7 @@ void Print(USHORT Window,LPSTR p)
|
||||
}
|
||||
else
|
||||
{
|
||||
if((UCHAR)p[i]<0x20 && (UCHAR)p[i]>0x7f)
|
||||
if((UCHAR)p[i]<0x20 || (UCHAR)p[i]>0x7f)
|
||||
p[i]=0x20;
|
||||
|
||||
if(bOutput)
|
||||
|
||||
Reference in New Issue
Block a user