Commit 372c7fca authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

winedump: Remove double assignment (Coverity).

parent e9a4dee1
...@@ -202,7 +202,7 @@ static const char* full_value_string(const struct full_value* fv) ...@@ -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) static int numeric_leaf(int* value, const unsigned short int* leaf)
{ {
struct full_value fv; struct full_value fv;
int len = len = full_numeric_leaf(&fv, leaf); int len = full_numeric_leaf(&fv, leaf);
switch (fv.type) switch (fv.type)
{ {
......
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