src/checkbufferoverrun.cpp: removed useless semicolon.

No functional change.
This commit is contained in:
Slava Semushin 2009-09-27 22:11:57 +07:00
parent 661ce78b69
commit f62e5f1672
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ void CheckBufferOverrun::checkScope(const Token *tok, const char *varname[], con
const char *strindex = tok2->str().c_str();
bool condition_out_of_bounds = true;
if (value < size)
condition_out_of_bounds = false;;
condition_out_of_bounds = false;
const Token *tok3 = tok2->tokAt(4);
assert(tok3 != NULL);