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

Make fix for #8056 not break RDB$BLOB_UTIL with segmented blobs.

This commit is contained in:
Adriano dos Santos Fernandes 2024-04-03 17:58:38 -03:00
parent 7828f48cd4
commit e93f6ae3f2

View File

@ -751,7 +751,8 @@ void EXE_receive(thread_db* tdbb,
}
if (!current->bli_materialized &&
(current->bli_blob_object->blb_flags & BLB_close_on_read))
(current->bli_blob_object->blb_flags & (BLB_close_on_read | BLB_stream)) ==
(BLB_close_on_read | BLB_stream))
{
current->bli_blob_object->BLB_close(tdbb);
}