mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0025860: Buffer overrun in TopTools_ShapeSet::Read
Avoid out of array bounds read/write.
This commit is contained in:
parent
1a75746e71
commit
5149c3f34b
@ -612,8 +612,11 @@ void TopTools_ShapeSet::Read(Standard_IStream& IS)
|
||||
//if(pm = strchr(vers,'\r'))
|
||||
// *pm ='\0';
|
||||
|
||||
for (Standard_Size lv = (strlen(vers)- 1); lv > 1 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
||||
Standard_Size lv = strlen(vers);
|
||||
if (lv > 0) {
|
||||
for (lv--; lv > 0 && (vers[lv] == '\r' || vers[lv] == '\n') ;lv--)
|
||||
vers[lv] = '\0';
|
||||
}
|
||||
|
||||
} while ( ! IS.fail() && strcmp(vers,Version) && strcmp(vers,Version2) );
|
||||
if (IS.fail()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user