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:
Tim-Philipp Müller 2015-12-30 13:16:40 +00:00
parent d6834432ed
commit 4e37976d83

View file

@ -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;
}
}