mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
fieldanalysis: fix double free() crashes
This commit is contained in:
parent
acb66eb7f4
commit
64db3d805f
1 changed files with 2 additions and 0 deletions
|
@ -333,7 +333,9 @@ gst_field_analysis_reset (GstFieldAnalysis * filter)
|
|||
filter->first_buffer = TRUE;
|
||||
filter->width = 0;
|
||||
g_free (filter->comb_mask);
|
||||
filter->comb_mask = NULL;
|
||||
g_free (filter->block_scores);
|
||||
filter->block_scores = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue