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

0023148: Error in stepstrcmp

Fix for reading complex entities in STEP reader
This commit is contained in:
gka 2012-05-11 16:59:04 +04:00
parent cb15fdf727
commit d029c7ef22

View File

@ -355,7 +355,7 @@ static Standard_Boolean stepstrcmp(const Standard_CString type,
// Attention : False pour dire OK, True sinon (car remplace strcmp)
Standard_Integer i,j = 0; Standard_Boolean res = Standard_False;
for (i = 0; name[i] != '\0' && type[i] != '\0' && !res ; i ++) {
if (name[i] == ' ') { j = i; break; }
if (name[i] == ' ' && type[i] == '\0') { j = i; break; }
if (type[i] != name[i]) res = Standard_True;
}
if (!res || (j == 0)) return res;