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

0030397: Data Exchange - STEP Reader extension to support entities which have a text description field with not supported symbols

STEP file is now opened in binary mode (instead of text mode) to avoid unexpected handling of control symbols inside string constants.
This commit is contained in:
dpasukhi 2020-09-09 13:02:39 +03:00 committed by abv
parent c99ad5d760
commit e0a25f3d93
2 changed files with 12 additions and 1 deletions

View File

@ -85,7 +85,7 @@ FILE* stepread_setinput (char* nomfic)
{
FILE* newin ;
if (strlen(nomfic) == 0) return stepin ;
newin = OSD_OpenFile(nomfic,"r");
newin = OSD_OpenFile(nomfic,"rb");
if (newin == NULL) {
return NULL ;

11
tests/bugs/step/bug30397 Normal file
View File

@ -0,0 +1,11 @@
puts "========================"
puts "0030397: Data Exchange - STEP Reader extension to support entities which have a text description field with not supported symbols"
puts "========================"
ReadStep D [locate_data_file bug31397.stp]
set state [data c]
if { [regexp "141153" $state] != 1 } {
puts "Error : wrong count of transferred roots"
}