8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 23:23:04 +01:00

Correction related to my last commit.

This commit is contained in:
dimitr 2009-03-02 09:34:37 +00:00
parent 2fcd8bb370
commit 9dca0fa2b7

View File

@ -3331,9 +3331,6 @@ static bool process_packet(rem_port* port, PACKET* sendL, PACKET* receive, rem_p
port = NULL;
}
if (result)
*result = port;
} // try
catch (const Firebird::status_exception& ex)
{
@ -3362,6 +3359,11 @@ static bool process_packet(rem_port* port, PACKET* sendL, PACKET* receive, rem_p
return false;
}
if (result)
{
*result = port;
}
return true;
}