Skip to content
Snippets Groups Projects
Commit b861687e authored by Julien Michel's avatar Julien Michel
Browse files

COV: Fixing coverity issues 1266726 and 1266746 (Ressource leak)

parent 72b22cc8
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ int svmGenericKernelBasicOperationsTest( int itkNotUsed(argc), char *argv[] )
px = new struct svm_node[5];
py = new struct svm_node[5];
resSub = new struct svm_node[5];
resAdd = new struct svm_node[5];
resSub = NULL;
resAdd = NULL;
px[0].index = 1;
px[1].index = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment