drdynvc: fix an incorrect length indicator.

This commit is contained in:
Vic Lee
2014-04-29 14:21:37 +08:00
parent 50746ea724
commit 7ed1e8a0f1

View File

@@ -300,7 +300,7 @@ static int wts_write_variable_uint(wStream* stream, UINT32 val)
}
else
{
cb = 3;
cb = 2;
Stream_Write_UINT32(stream, val);
}