summaryrefslogtreecommitdiffstats
path: root/libhb/fifo.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-09-09 14:31:26 -0700
committerJohn Stebbins <[email protected]>2016-09-09 14:33:07 -0700
commit0dbad990a03753fb6da9f999280e2ad027f4dcc7 (patch)
tree25a0a178ebf76d967dd3e9ff8c71dbf69affcd04 /libhb/fifo.c
parentacc5d9847c8f6c940b30cc18a767884e4b2e5aeb (diff)
libhb: fix memory leak
code commented out during a debug session got unintentionally committed
Diffstat (limited to 'libhb/fifo.c')
-rw-r--r--libhb/fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/fifo.c b/libhb/fifo.c
index 42894c7a0..086496218 100644
--- a/libhb/fifo.c
+++ b/libhb/fifo.c
@@ -307,7 +307,7 @@ void hb_buffer_pool_free( void )
free(b->data);
}
}
- //free( b );
+ free( b );
count++;
}
if ( count )