View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0022936 | Community | OCCT:Modeling Algorithms | public | 2012-01-30 14:39 | 2012-04-16 12:26 |
Reporter | Pawel | Assigned To | bugmaster | ||
Priority | normal | Severity | minor | ||
Status | closed | Resolution | fixed | ||
Platform | A | OS | L | ||
Product Version | 6.5.2 | ||||
Target Version | 6.5.3 | Fixed in Version | 6.5.3 | ||
Summary | 0022936: Memory leak in inc\MAT_Mat.gxx line | ||||
Description | the lines if (noofarea == 0) { cout <<" Erreur d allocation "<<endl; return; } do not delete the previously allocated variables: 'firstarea' and 'lastarea'. I would change the code to: if (noofarea == 0) { cout <<" Erreur d allocation "<<endl; if(firstarea != NULL) delete [] firstarea; if(lastarea != NULL) delete [] lastarea; return; } | ||||
Tags | No tags attached. | ||||
Test case number | Test case is not required | ||||
|
Please replace C pointers by TColStd_Array1OfInteger |
|
C pointers has been replaced by TColStd_Array1OfInteger Branch http://svn/svn/occt/branches/OCC22936 is ready to be reviewed. Dear Andrey, Please review. |
|
Reviewed with no remarks, please test |
|
Dear BugMaster, Workbench KAS:dev:mkv-22936-occt was created from SVN branch http://svn/svn/occt/branches/OCC22936 (and mkv-22936-products from trunk) and compiled on Linux platform. There are not regressions in mkv-22936-products regarding to KAS:dev:products-20120127-opt See results in /QADisk/occttests/results/KAS/dev/mkv-22936-products_14022012/lin See reference results in /QADisk/occttests/results/KAS/dev/products-20120127-opt_28012012/lin See test cases in /QADisk/occttests/tests/ED N.B. In order to launch testing case you can make use the following instructions http://doc/doku.php?id=occt:certification |
|
Integrated into trunk of occt repository Date: 2012-02-17 12:09:20 +0400 (Fri, 17 Feb 2012) New Revision: 10497 Modified: trunk/src/MAT/MAT_Mat.gxx |
|
Verified. Please close. |
Date Modified | Username | Field | Change |
---|---|---|---|
2012-01-30 14:39 | Pawel | New Issue | |
2012-01-30 14:39 | Pawel | Assigned To | => jgv |
2012-01-30 14:46 |
|
Note Added: 0019307 | |
2012-01-30 14:46 |
|
Assigned To | jgv => dbv |
2012-01-30 14:46 |
|
Status | new => assigned |
2012-02-06 13:51 |
|
Note Added: 0019406 | |
2012-02-06 13:51 |
|
Assigned To | dbv => abv |
2012-02-06 13:51 |
|
Status | assigned => resolved |
2012-02-06 15:38 |
|
Note Added: 0019409 | |
2012-02-06 15:38 |
|
Assigned To | abv => dbv |
2012-02-06 15:38 |
|
Status | resolved => reviewed |
2012-02-08 10:46 |
|
Target Version | => 6.5.3 |
2012-02-14 13:14 |
|
Assigned To | dbv => mkv |
2012-02-15 18:01 |
|
Test case number | => Test case is not required |
2012-02-15 18:01 |
|
Assigned To | mkv => dbv |
2012-02-15 18:01 |
|
Status | reviewed => assigned |
2012-02-15 18:25 |
|
Note Added: 0019590 | |
2012-02-15 18:26 |
|
Status | assigned => resolved |
2012-02-15 18:26 |
|
Status | resolved => reviewed |
2012-02-15 18:26 |
|
Status | reviewed => tested |
2012-02-17 12:11 | bugmaster | Note Added: 0019614 | |
2012-02-17 12:11 | bugmaster | Status | tested => verified |
2012-02-17 12:11 | bugmaster | Resolution | open => fixed |
2012-02-17 12:11 | bugmaster | Assigned To | dbv => Pawel |
2012-03-29 17:26 | bugmaster | Changeset attached | => occt master f391e9f2 |
2012-04-12 17:17 | Pawel | Note Added: 0020372 | |
2012-04-16 12:26 | Pawel | Assigned To | Pawel => bugmaster |