diff options
author | dos-reis <gdr@axiomatics.org> | 2007-12-13 23:07:13 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-12-13 23:07:13 +0000 |
commit | 2b6e0e32bf2e59c9c80725353c761183003bab89 (patch) | |
tree | 3f3d8ce349deb94c11dd7c4290c6fc0320cb8bb3 /src/graph/viewman/makeGraph.c.pamphlet | |
parent | 2f2cf5024ab894aa083d87f1e008528d5a5c717b (diff) | |
download | open-axiom-2b6e0e32bf2e59c9c80725353c761183003bab89.tar.gz |
* makeGraph.c.pamphlet (discardGraph): Fix thinko.
Diffstat (limited to 'src/graph/viewman/makeGraph.c.pamphlet')
-rw-r--r-- | src/graph/viewman/makeGraph.c.pamphlet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph/viewman/makeGraph.c.pamphlet b/src/graph/viewman/makeGraph.c.pamphlet index 14ab47f4..66caa9c3 100644 --- a/src/graph/viewman/makeGraph.c.pamphlet +++ b/src/graph/viewman/makeGraph.c.pamphlet @@ -153,7 +153,7 @@ discardGraph (graphStruct *theGraph) for (j=0, pL=theGraph->listOfListsOfPoints; j<theGraph->numberOfLists; j++,pL++) free(pL->listOfPoints); - free(pL); + free(theGraph->listOfListsOfPoints); free(theGraph); } |