CID 1298707: Change confusing code that makes coverity think that Length
is uninitalized (we want length to be zero so instead of setting it to 0, we check if it not zero and then we set it if it is not?!?!)
This commit is contained in:
parent
dd6caf1efe
commit
e79de7d907
@ -3474,7 +3474,7 @@ DtCompileGeneric (
|
||||
|
||||
/* Now we can actually compile the parse tree */
|
||||
|
||||
if (Length && *Length)
|
||||
if (Length)
|
||||
{
|
||||
*Length = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user