Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit db3c40c

Browse files
committed
fix BgwPoolExecute in case of queue overflow
1 parent c9d107a commit db3c40c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bgwpool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ BgwPoolExecute(BgwPool* pool, void* work, size_t size, MtmReceiverContext *ctx)
246246
* Size of work is larger than size of shared buffer:
247247
* run it immediately
248248
*/
249-
pool->executor(work, size, NULL);
249+
pool->executor(work, size, ctx);
250250
return;
251251
}
252252

0 commit comments

Comments
 (0)