[proxy,filter] fixed uninitialized value in bitmap-filter
This commit is contained in:
parent
9e8fc60a45
commit
ab2de5d60c
@ -165,7 +165,7 @@ static size_t drdynvc_cblen_to_bytes(UINT8 cbLen)
|
||||
|
||||
static UINT32 drdynvc_read_variable_uint(wStream* s, UINT8 cbLen)
|
||||
{
|
||||
UINT32 val;
|
||||
UINT32 val = 0;
|
||||
|
||||
switch (cbLen)
|
||||
{
|
||||
@ -259,7 +259,7 @@ static UINT8 drdynvc_value_to_cblen(UINT32 value)
|
||||
|
||||
static BOOL drdynvc_write_variable_uint(wStream* s, UINT32 value, UINT8 cbLen)
|
||||
{
|
||||
UINT32 val;
|
||||
UINT32 val = 0;
|
||||
|
||||
switch (cbLen)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user