1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0024451: Logical conjunction always evaluates to false

As the variable gets casted on Standard_Byte it is checked to be within the range <0; 255>
This commit is contained in:
Pawel 2013-12-10 10:26:10 +01:00 committed by abv
parent 7551feda20
commit de88958f6e

View File

@ -1153,7 +1153,7 @@ static Standard_Integer DDataStd_SetByteArray (Draw_Interpretor& di,
j = 6;
for(Standard_Integer i = From; i<=To; ++i) {
Standard_Integer ival = Draw::Atoi(arg[j]);
if(ival < 0 && 255 < ival) {
if(ival < 0 || 255 < ival) {
cout << "Bad value = " << ival<< endl;
return 1;
}