about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--TODO.txt2
-rw-r--r--examples/sort/sort.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/TODO.txt b/TODO.txt
index a0591737..0dc8e831 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -3,8 +3,6 @@ TODO
 
 Build System / Configure / Release Cleanups
 --
- o Rename .bout to .ktest (klee test)
-
  o Rename .pc to .kquery (kleaver query)
 
  o Configure doesn't check for bison / flex, we don't really use these
diff --git a/examples/sort/sort.c b/examples/sort/sort.c
index 62e4124e..a72ccf1e 100644
--- a/examples/sort/sort.c
+++ b/examples/sort/sort.c
@@ -66,6 +66,9 @@ void test(int *array, unsigned nelem) {
 
   for (unsigned i = 0; i != nelem; ++i)
     assert(temp1[i] == temp2[i]);
+
+  free(temp1);
+  free(temp2);
 }
 
 int main() {