Fix Svace issue (Uninitialized local variable) 54/74654/1
authorGilbok Lee <gilbok.lee@samsung.com>
Wed, 15 Jun 2016 06:28:13 +0000 (15:28 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Wed, 15 Jun 2016 06:28:13 +0000 (15:28 +0900)
Change-Id: I04d66f73d7d324d06babc266562aa0f434d79ec5

test/mediamuxer_test_gst.c

index 0bc6565d17720a4648e94465c1ff74e2d9f9adfe..729ab9c9bc03d1066a16cf7a76ae9b0dec47877f 100644 (file)
@@ -650,7 +650,7 @@ static gboolean __bus_call(GstBus *bus, GstMessage *mesg, gpointer data)
 /* Demux audio (wav/amr) file and generate raw data */
 int demux_audio()
 {
-       CustomData data;
+       CustomData data = {0, };
        GMainLoop *loop_dmx;
        GstBus *bus;
        guint watch_id_for_bus;