Pawel Kowalski
8ad8260234
0023332: Expression 'anIndex < 0' is always false. Unsigned type value is never < 0. in Vrmldata_Geometry.cxx
...
Examining index sign before casting to Standard_Size.
Argument of method VrmlData_ArrayVec3d::Value() changed from Standard_Integer to Standard_Size to be consistent with its use (avoid compiler warnings)
2012-07-27 16:08:57 +04:00
Pawel
d497b3141d
0023333: The variable 'i' is being used for this loop and for the outer loop in Vrmldata_ShapeConvert.cxx
...
Use separate variable to iterate the inner loop.
2012-07-27 16:04:43 +04:00
Pawel
db3d2a99ae
0023335: Array overrun is possible. The value of 'i' index could reach 200 in Interface_MSG.cxx
...
Iterating from 1 to 199 over the 'buf' in order to avoid an overrun.
2012-07-27 15:55:57 +04:00
Pawel
b28f4666f9
0023337: The 'strcmp' function returns 0 if corresponding strings are equal. (1)
...
Checking if the return value from 'strcmp' is '0'.
2012-07-27 15:53:14 +04:00
Pawel
fafad173ed
0023336: The 'strcmp' function returns 0 if corresponding strings are equal.
...
Checking if the return value from 'strcmp' is '0'.
2012-07-27 15:50:17 +04:00
Pawel
5dc6fb935c
0023339: The 'strcmp' function returns 0 if corresponding strings are equal. (2)
...
Checking if the return value from 'strcmp' is '0'.
2012-07-27 15:40:46 +04:00
Pawel
8d3d66d629
0023340: The values of different enum types are compared: switch(ENUM_TYPE_A) { case ENUM_TYPE_B: ... }. StepToTopoDS.cxx
...
Corrected the used enumeration type.
2012-07-27 15:26:32 +04:00
Pawel
e25709170a
0023325: Always getting the transparency of the back face
...
Added the 'breaks' in the affected 'switch' statement.
2012-07-27 15:23:23 +04:00
Pawel
b804b20e23
0023319: Typo in AIS_ConcentricRelation.cxx line 156
...
Checking if the 'Vertex2' (NOT 'Vertex1') is on plane in order to project it.
2012-07-27 15:20:29 +04:00
Pawel
b31fce3710
0023320: The body of 'OpenCollector' function is fully equivalent to the body of 'CloseCollector' function
...
When opening the collector setting the corresponding flag to Standard_False.
2012-07-27 15:17:16 +04:00
Pawel
d28abc6596
0023326: The 'aSibling' pointer was utilized before it was verified against nullptr. ldom_element.cxx
...
Verifying pointer against NULL before accessing it.
2012-07-27 15:14:35 +04:00
Pawel
e9eb6248dc
0023317: Using the iteration variable in the inner and outer loop in GGraphic2d_SetOfCurves.cxx
...
Replaced the iteration variable for the internal loop.
2012-07-27 15:11:06 +04:00
Pawel
53aa7b3237
0023318: If statement equal to else statement in AIS_ConcentricRelation.cxx, lines 108-115
...
Corrected the else-clause.
2012-07-27 15:05:38 +04:00
Pawel
d015d21804
0023277: Buffer underflow using memset in osd_path.cxx
...
The parameter used in memset matches the buffer size.
2012-07-27 14:58:54 +04:00
Pawel
9d21a648c8
0023322: Identical sub-expressions 'MyCView.Orientation.ViewReferencePoint.y != float (Y)'
...
Changed the duplicate 'y' to 'z'.
2012-07-27 14:44:56 +04:00
Pawel
3f6213c322
0023315: Duplicate comarison in an if-clause ib Prs2d_ToleranceFrame.cxx
...
Testing the length of 'myTxt2' instead of 'myTxt1' twice.
2012-07-27 12:26:44 +04:00
vtn
be10f7a868
0023342: Changing of OCCT tests according to integration of 23.07.2012
...
Tests are changed according to current state of OCCT.
2012-07-23 16:33:47 +04:00
Pawel
abd9003d5f
0023280: Pointer to local array is stored outside the scope of this array.
...
Moved the array 'buff' so it can be visible while 'str' still refers to it.
2012-07-23 15:00:03 +04:00
vtn
8418c61723
0023273: Avoid failures due to datadir commend when data files are not present
...
Fix for #23273 issue.
Fix for #23273 issue (boolean/013/R9).
Modifications of tests according to #23260 issue.
Attempt to protect against hang-ups due to waiting for standard input
change of behaviour of offset/shape_type_i/D7 case.
Attempt to protect against hang-ups during initialization of menu in batch mode.
increase cpulimit for parallel incmesh.
#23260 is fixed. count_parallel is not needed anymore.
Deleted unused code.
change of behaviour of offset/shape_type_i/D7 case.
The fix was incorrect.
Second attempt to protect against hang-ups during initialization of menu in batch mode
correction of tests in order to awoid instability.
Elapsed time changed to CPU user time is performance tests.
Processing of errors on Windows.
Stop cpulimit killer if armed by test, after the test is completed
2012-07-20 17:37:21 +04:00
dbv
f67d0512ac
0023260: Regression: Instability in parallel incmesh on Linux.
...
Added protection to the function which may have data race (according to the valgrind report).
Added protection to the BRepMesh_FastDiscretFace::RestoreStructureFromTriangulation function
Slight reordering to optimize use of mutex (lock once)
Now Standard_Mutex::SentryNested are created as named object.
Map inside TopTools_MutexForShapeProvider now store Handle_TopoDS_TShape as a key instead of TopoDS_Shape
2012-07-20 17:18:29 +04:00
jgv
312cd1f500
0023244: Bug of BRepClass_FaceClassifier: it does not take into account the tolerance
2012-07-20 17:12:28 +04:00
ama
b6648a4a2d
0023224: Empty result done by intersection algorithm
...
Remove the cutting of the original surface from IntCurveSurface_Inter to see how much it affects the correctness of the algorithm.
2012-07-20 17:07:03 +04:00
Pawel
b1ea14b63c
0023265: cppcheck warning: Mismatching allocation and deallocation
...
Use pairs: new - delete (new - delete [] for arrays), malloc - free
2012-07-20 16:57:09 +04:00
Pawel
76021966ce
0023264: cppcheck warning: Logical conjunction always evaluates to false
...
Replaced the '&&' operator with '||'. Otherwise the logical conjunction always evaluates to false.
2012-07-20 16:54:16 +04:00
Pawel
207e57e4c2
0023279: Accessing NULL pointer
...
Assuring the pointer is not 'NULL'.
2012-07-20 16:50:22 +04:00
Pawel
575aec54df
0023259: MSVC: C4101 warning - unreferenced local variable
...
Removed unreferenced variables
2012-07-20 16:38:26 +04:00
Pawel
8ec3edb0c5
0023278: Buffer underflow using memset in osd_host.cxx
...
Zero memory uses the size of the array.
2012-07-20 16:32:09 +04:00
Pawel
0564092bc9
0023287: IntPolyh_MaillageAffinage.cxx, line 2217: "identical sub-expressions to the left and to the right of the '-' operator"
...
Changed the redundant curve type Geom(2d)_BSplineCurve to Geom(2d)_BezierCurve.
2012-07-20 16:28:25 +04:00
Pawel
35958a5847
0023287: IntPolyh_MaillageAffinage.cxx, line 2217: "identical sub-expressions to the left and to the right of the '-' operator"
...
The expression
Abs(PEP1.U()-PEP1.U())
changed to
Abs(PEP1.U()-PEP2.U())
In this case the points are equal and so the points number can be reduced to '1'.
2012-07-20 16:26:24 +04:00
Pawel
f7233960d3
0023305: One index value verified twice in BRepFill_TrimShellCorner.cxx
...
Verifying both affected indexes instead of one.
2012-07-20 16:24:35 +04:00
Pawel
431258f747
0023308: A typo in if-clause, in TopOpeBRepDS_EXPORT.cxx
...
Corrected typo in the if-clause.
2012-07-20 16:11:32 +04:00
Pawel
841d66724b
0023313: Return Standard_False in case of an unsupported case in IntAna_Curve.cxx
...
Return Standard_False in case of unsupported case.
2012-07-20 16:09:28 +04:00
Pawel
56084216a8
0023303: Expression always true in ShapeFix_Face.cxx
...
The two corrected if-clause conditions were always true.
In FixSmallAreaWire where the documentation says: "Detects wires with small area (that is less than 100*Precision::PConfusion(). Removes these wires if they are internal." and the bugfix conforms to this.
For 'NeedCheckSplitWire' option in the Perform method the same assumption is made although no documentation on this could be found.
2012-07-20 16:07:15 +04:00
Pawel
50e433aaf2
0023304: Copying constructor fails to copy both 'myIndx' variables.
...
Copy constructor corrected.
2012-07-20 16:04:16 +04:00
Pawel
606a112a12
0023311: Duplicated check in if-clause in ChFi2d_Builder_0.cxx
...
Verifying that the second provided edge is neither a line nor a circle.
2012-07-20 16:01:57 +04:00
Pawel
f6475f0339
0023307: Same variable value verified twice in TopOpeBRepTool_TOOL.cxx
...
Checking both variable values: onf, onl.
2012-07-20 15:58:42 +04:00
Pawel
fccb487b5f
0023300: ShapeFix_EdgeProjAux.cxx: line 283 - identical sub-expression in 'if-clause'
...
Verifying also the last parameter in the if-clause.
2012-07-20 15:47:26 +04:00
Pawel
b476213a1d
0023299: ShapeCustom_BSplineRestriction.cxx: line 732 - identical sub-expression in 'if-clause'
...
Verifying both affected variables in the if-clause.
2012-07-20 14:57:49 +04:00
Pawel
dede2e21f6
0023301: Comparing variable to itself in ShapeUpgrade_WireDivide.cxx
...
Fixing self-comparison.
2012-07-20 14:35:30 +04:00
abv
5e335c5bf7
0023276: Add generated files to .gitignore
...
Directories for generated files (projects, Visual Studio artifacts, Emacs backup files, test results) are added to .gitignore
Suppressed generated files.
Allow to use bat, sh, am, m4 and ac files in subdirectories.
2012-07-17 17:26:25 +04:00
Pawel
8bde65b453
0023268: cppcheck warning: Using size of pointer WIDTHMAP instead of size of its data.
...
Using the size of the array in bytes.
2012-07-13 17:38:04 +04:00
Pawel
9e4c2fbb29
0023261: Checking handle value against NULL
...
Checking handles using the IsNull() method.
Minor correction of compilation error (missing parentheses in function call)
2012-07-13 17:31:19 +04:00
Pawel
f272f76c5a
0023258: Missing parenthesis
...
Missing parenthesis added.
2012-07-13 17:27:35 +04:00
kgv
8fa02385b0
0023250: Missing include in OSD_MemInfo.cxx
...
Function getpid() declared in "unistd.h" header on POSIX-compliant systems.
Fix compilation error with gcc 4.7 on Linux.
2012-07-13 17:23:31 +04:00
vro
44b8f2d659
0023253: Additional viewer 3d draw-commands vleft, vfront, ...
...
New draw-commands vleft, vright, vbottom, vback and vfront.
2012-07-13 17:18:48 +04:00
pkv
a15d6aceb6
0023248: Wrong result done by solid classifier algorithm for infinite point
2012-07-13 17:15:41 +04:00
apn
c281a4a4a1
023263: Incorrect results displaying of QA command BUC60811 using "printf"
...
Modified command BUC60811
2012-07-13 17:11:56 +04:00
jgv
074028c646
0023201: Projection algorithm produces wrong results.
2012-07-13 17:07:41 +04:00
Pawel
fdbc4fe73a
0023257: Missing return statement
...
Added missing return statement
2012-07-13 16:41:53 +04:00
gka
87073a1017
0023251: Crash during reading materials from STEP file for case when name of material is not set.
...
Fix for case when materials in STEP file was written invalid way
2012-07-13 16:36:08 +04:00