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

Fixed bug CORE-2368 : AV after isc_cancel_events if event was not found

This commit is contained in:
hvlad 2009-03-12 08:06:26 +00:00
parent 28cd329da3
commit 428204cdf8

View File

@ -1234,7 +1234,10 @@ static ISC_STATUS cancel_events( rem_port* port, P_EVENT * stuff, PACKET* send)
/* If no event found, pretend it was cancelled */
if (!event)
{
success(status_vector);
return port->send_response(send, 0, 0, status_vector, false);
}
/* cancel the event */