8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +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 committed by Dmitry Yemanov
parent fa8b99d5cd
commit edaee40605

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);
}