check: Hopefully fix an 'may be used uninitialized' warning on OS/X

This commit is contained in:
Jan Schmidt 2009-10-08 17:19:38 +01:00
parent 09ae85670c
commit 5dbe63c07a

View 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;