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

Silly (but potentially serious) bug fixed

This commit is contained in:
tamlin 2002-01-05 16:30:42 +00:00
parent a06289232d
commit c41613e2e3

View File

@ -120,7 +120,7 @@ SLONG DLL_EXPORT ISC_event_clear(EVENT event)
if (pEvent->event_shared) {
pEvent = pEvent->event_shared;
}
return event->event_count + 1;
return pEvent->event_count + 1;
}