- Fix memory leak - st->es_section allocated in tsdemux.c - line 108, was not free'd
This commit is contained in:
parent
19b39e4159
commit
55a0e92a67
1 changed files with 3 additions and 0 deletions
|
@ -108,6 +108,9 @@ stream_clean(elementary_stream_t *st)
|
|||
free(st->es_global_data);
|
||||
st->es_global_data = NULL;
|
||||
st->es_global_data_len = 0;
|
||||
|
||||
free(st->es_section);
|
||||
st->es_section = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue