mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 06:03:02 +01:00
Fixed bug CORE-2368 : AV after isc_cancel_events if event was not found
This commit is contained in:
parent
28cd329da3
commit
428204cdf8
@ -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 no event found, pretend it was cancelled */
|
||||||
|
|
||||||
if (!event)
|
if (!event)
|
||||||
|
{
|
||||||
|
success(status_vector);
|
||||||
return port->send_response(send, 0, 0, status_vector, false);
|
return port->send_response(send, 0, 0, status_vector, false);
|
||||||
|
}
|
||||||
|
|
||||||
/* cancel the event */
|
/* cancel the event */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user