mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Fix bug with using of uninitialized variable. New version of patch: pass unit object to the getSiName() function directly. Test case for this bug
16 lines
465 B
Plaintext
Executable File
16 lines
465 B
Plaintext
Executable File
puts "========================"
|
|
puts "OCC23567"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong STEP unit is returned by STEPControl_Reader.FileUnits() function
|
|
#######################################################################
|
|
|
|
set info [ stepfileunits [locate_data_file bug23567_a.step] ]
|
|
set index1 [lsearch $info metre]
|
|
|
|
puts ""
|
|
if { ${index1} == -1 } {
|
|
puts "Error : bad unit"
|
|
}
|