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

Fixed bug CORE-3095 : Client receive event's with count equal to 1 despite of how many times EVENT was POSTed in same transaction

This commit is contained in:
hvlad 2011-01-31 10:32:17 +00:00
parent b07b7e6996
commit bbd043ffa3

View File

@ -890,6 +890,7 @@ DeferredWork* DFW_post_work(jrd_tra* transaction, enum dfw_t type, const dsc* de
DeferredWork* work = sp->hash.lookup(tmp); DeferredWork* work = sp->hash.lookup(tmp);
if (work) if (work)
{ {
work->dfw_count++;
return work; return work;
} }