Commit 69952b6f authored by Alexandre Julliard's avatar Alexandre Julliard

mciseq: Fix potentially uninitialized variable compiler warnings.

parent b3af0870
......@@ -230,6 +230,7 @@ static WORD MIDI_mciReadVaryLen(WINE_MCIMIDI* wmm, LPDWORD lpdw)
do {
if (MIDI_mciReadByte(wmm, &byte) != 0) {
*lpdw = 0;
return 0;
}
value = (value << 7) + (byte & 0x7F);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment