Skip to content
Snippets Groups Projects
Commit 66b7414b authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 899e2997
No related branches found
No related tags found
No related merge requests found
// $Id: Malloc.cpp,v 1.7 2001-04-08 20:36:49 geuzaine Exp $ // $Id: Malloc.cpp,v 1.8 2001-06-07 15:13:08 geuzaine Exp $
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <malloc.h> #include <malloc.h>
...@@ -41,5 +41,4 @@ void Free(void *ptr) ...@@ -41,5 +41,4 @@ void Free(void *ptr)
{ {
if (ptr == NULL) return; if (ptr == NULL) return;
free(ptr); free(ptr);
ptr = NULL;
} }
// $Id: CAD.cpp,v 1.23 2001-06-07 14:20:08 remacle Exp $ // $Id: CAD.cpp,v 1.24 2001-06-07 15:13:08 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "Geo.h" #include "Geo.h"
...@@ -1656,7 +1656,7 @@ Curve * CreateReversedCurve (Mesh *M,Curve *c){ ...@@ -1656,7 +1656,7 @@ Curve * CreateReversedCurve (Mesh *M,Curve *c){
Curve **pc; Curve **pc;
if(pc = (Curve**)Tree_PQuery(M->Curves,&newc)) if((pc = (Curve**)Tree_PQuery(M->Curves,&newc)))
{ {
Free_Curve(&newc,0); Free_Curve(&newc,0);
return *pc; return *pc;
......
$Id: VERSIONS,v 1.19 2001-05-24 10:11:29 geuzaine Exp $ $Id: VERSIONS,v 1.20 2001-06-07 15:11:11 geuzaine Exp $
New in 1.20: Various bug fixes (Functions in Includes, solver command, New in 1.20: Many memory leak fixes; Various bug fixes (Functions in
ColorTable option, ...) and small enhancements (menu reorganization, Includes, solver command, ColorTable option, ...) and small
constrained background mesh, mesh visibility options, geometry enhancements (menu reorganization, constrained background mesh, mesh
edition, mesh quality histograms, ...) visibility options, geometry edition, mesh quality histograms, ...);
New in 1.19: Fixed seg. fault for scalar simplex post-processing; new New in 1.19: Fixed seg. fault for scalar simplex post-processing; new
Solver menu; interface for GetDP solver through sockets; fixed Solver menu; interface for GetDP solver through sockets; fixed
......
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