winedump: Remove double assignment (Coverity).

oldstable
Marcus Meissner 2011-02-23 20:45:59 +01:00 committed by Alexandre Julliard
parent e9a4dee1eb
commit 372c7fca58
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ static const char* full_value_string(const struct full_value* fv)
static int numeric_leaf(int* value, const unsigned short int* leaf)
{
struct full_value fv;
int len = len = full_numeric_leaf(&fv, leaf);
int len = full_numeric_leaf(&fv, leaf);
switch (fv.type)
{