diff options
author | John Stebbins <[email protected]> | 2016-09-09 14:31:26 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-09-09 14:33:07 -0700 |
commit | 0dbad990a03753fb6da9f999280e2ad027f4dcc7 (patch) | |
tree | 25a0a178ebf76d967dd3e9ff8c71dbf69affcd04 /libhb/fifo.c | |
parent | acc5d9847c8f6c940b30cc18a767884e4b2e5aeb (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.c | 2 |
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 ) |