This fixes a segfault on exit

Original commit message from CVS:
This fixes a segfault on exit
This commit is contained in:
Ronald S. Bultje 2003-06-01 13:20:37 +00:00
parent 4740481183
commit 401ae2bdee

View file

@ -240,7 +240,7 @@ gst_divxenc_init (GstDivxEnc *divxenc)
static gboolean
gst_divxenc_setup (GstDivxEnc *divxenc)
{
void *handle;
void *handle = NULL;
SETTINGS output;
DivXBitmapInfoHeader input;
gdouble fps;
@ -306,7 +306,7 @@ static void
gst_divxenc_unset (GstDivxEnc *divxenc)
{
if (divxenc->handle) {
encore(divxenc, ENC_OPT_RELEASE, NULL, NULL);
encore(divxenc->handle, ENC_OPT_RELEASE, NULL, NULL);
divxenc->handle = NULL;
}
}