mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
codecparsers: vp9: minor clean-up
Remove setting of parser variable to NULL after free, that makes no sense (and coverity is no doubt going to complain about it).
This commit is contained in:
parent
d6834432ed
commit
4e37976d83
1 changed files with 1 additions and 2 deletions
|
@ -644,7 +644,7 @@ gst_vp9_parser_new (void)
|
|||
* gst_vp9_parser_free:
|
||||
* @parser: the #GstVp9Parser to free
|
||||
*
|
||||
* Frees @parser and sets it to %NULL
|
||||
* Frees @parser.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
|
@ -657,7 +657,6 @@ gst_vp9_parser_free (GstVp9Parser * parser)
|
|||
parser->priv = NULL;
|
||||
}
|
||||
g_slice_free (GstVp9Parser, parser);
|
||||
parser = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue