30.10.2017, 19:28
No, it doesn't fit with that line as you return an error so you basically open a new bracket out of nowhere and execute some code in it. This is your code:
Код:
if (...) return SCP(...);
{
// code.. that is ALWAYS executed
}
else // not an "if" pair before.
{
}

