mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-15 13:35:30 +00:00
Memory leaks ! #253
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sidgairo18 on GitHub (Jan 21, 2017).
write_stringz_as_webvtt()contextleaks the storage that it points to in file src/lib_ccx/ccx_encoders_common.c functionencode_sub()epggoing out of scope leaks the storage it points to in the file /src/lib_ccx/networking.c functionnet_send_epg()ctxgoing out of scope leaks the storage it points to in the file src/lib_ccx/lib_ccx.cfunction init_libraries()@MatejMecka commented on GitHub (Jan 12, 2018):
Valgrind tells me those ones are fixed but there are other ones that Valgrind reports for me.
@cfsmp3 commented on GitHub (Jan 12, 2018):
@MatejMecka we're missing lines there... we need more than just the stack trace... before each of those it must say how much memory was allocated and in which line of code.
@MatejMecka commented on GitHub (Jan 13, 2018):
@cfsmp3
@cfsmp3 commented on GitHub (Jan 14, 2018):
Run valgrind on the debug version of CCExtractor, otherwise we're missing
line numbers and other details we need to fix this.
On Fri, Jan 12, 2018 at 8:54 PM, Matej Plavevski notifications@github.com
wrote:
@MatejMecka commented on GitHub (Jan 14, 2018):
Compiled CCExtractor with the -g options and -debug in CCExtractor.
I passed to valgrind
--leak-check=full --show-leak-kinds=all@cfsmp3 commented on GitHub (Mar 9, 2018):
Closing since @sidgairo18 is gone...