From 401ae2bdeecf7ecf8fa9a0b99274c038c6a9afeb Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 1 Jun 2003 13:20:37 +0000 Subject: This fixes a segfault on exit Original commit message from CVS: This fixes a segfault on exit --- ext/divx/gstdivxenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/divx') diff --git a/ext/divx/gstdivxenc.c b/ext/divx/gstdivxenc.c index e337a96f..bdc32786 100644 --- a/ext/divx/gstdivxenc.c +++ b/ext/divx/gstdivxenc.c @@ -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; } } -- cgit v1.2.1