From e1b04e26cf8b79a07c85cd8272b6677faa4e12ce Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 5 Mar 2004 02:30:10 +0000 Subject: [PATCH] examples/gstplay/player.c: Initialize variables to NULL. Prevents a segfault because the (uninitialized) variable is ... Original commit message from CVS: * examples/gstplay/player.c: (main): Initialize variables to NULL. Prevents a segfault because the (uninitialized) variable is not NULL, resulting in a crash on trying to reach error->message. --- ChangeLog | 7 +++++++ examples/gstplay/player.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ec0511a..48e4269 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-04 Ronald Bultje + + * examples/gstplay/player.c: (main): + Initialize variables to NULL. Prevents a segfault because the + (uninitialized) variable is not NULL, resulting in a crash on + trying to reach error->message. + 2004-03-05 Benjamin Otte * gst/audioconvert/gstaudioconvert.c: diff --git a/examples/gstplay/player.c b/examples/gstplay/player.c index 8aabe69..32001a9 100644 --- a/examples/gstplay/player.c +++ b/examples/gstplay/player.c @@ -100,7 +100,7 @@ main (int argc, char *argv[]) { GstPlay *play; GstElement *data_src, *video_sink, *audio_sink, *vis_element; - GError *error; + GError *error = NULL; /* Initing GStreamer library */ gst_init (&argc, &argv); -- 2.7.4