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:
christos 2015-08-26 01:58:55 +00:00
parent dd6caf1efe
commit e79de7d907

View File

@ -3474,7 +3474,7 @@ DtCompileGeneric (
/* Now we can actually compile the parse tree */
if (Length && *Length)
if (Length)
{
*Length = 0;
}