check: Hopefully fix an 'may be used uninitialized' warning on OS/X
authorJan Schmidt <thaytan@noraisin.net>
Thu, 8 Oct 2009 16:19:38 +0000 (17:19 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Thu, 8 Oct 2009 16:19:38 +0000 (17:19 +0100)
tests/check/libs/bytereader.c

index b08613d..a1a1626 100644 (file)
@@ -130,7 +130,7 @@ GST_START_TEST (test_get_uint_le)
     0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21
   };
   GstByteReader reader = GST_BYTE_READER_INIT (data, 16);
-  guint8 a;
+  guint8 a = 0;
   guint16 b = 0;
   guint32 c = 0;
   guint64 d = 0;
@@ -173,7 +173,7 @@ GST_START_TEST (test_get_uint_be)
     0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21
   };
   GstByteReader reader = GST_BYTE_READER_INIT (data, 16);
-  guint8 a;
+  guint8 a = 0;
   guint16 b = 0;
   guint32 c = 0;
   guint64 d = 0;