1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

cleanup: if there is return from if-part, we don't need else statement

This commit is contained in:
konstantin@mysql.com
2003-12-10 22:26:31 +03:00
parent ea81fd27bb
commit 124c4ca346
11 changed files with 36 additions and 56 deletions

View File

@ -1474,7 +1474,7 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
}
return 0;
}
else if (!key2)
if (!key2)
{
key1->use_count--;
key1->free_tree();