changeset 179:4d6483986506

Uncomment free(), fixing memory leak
author Jamie Bullock <jamie@jamiebullock.com>
date Wed, 19 Jun 2013 16:05:59 -0700
parents a44feda65b99
children e678a849f251
files src/vector.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/vector.c	Wed Jun 19 16:04:42 2013 -0700
+++ b/src/vector.c	Wed Jun 19 16:05:59 2013 -0700
@@ -538,7 +538,7 @@
         }
     }
 
-   // free(input);
+    free(input);
     return (rv ? rv : XTRACT_SUCCESS);
 }