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

Applied patch for CORE-3412: Array with BOOLEAN. Bug in sdl_desc [sdl.cpp]. Thanks to Dmitry Kovalenko.

This commit is contained in:
dimitr 2011-03-30 08:14:42 +00:00
parent a772d0af3e
commit b8d5f6f24a

View File

@ -941,6 +941,11 @@ static const UCHAR* sdl_desc(const UCHAR* ptr, DSC* desc)
desc->dsc_length = sizeof(ULONG);
break;
case blr_bool:
desc->dsc_dtype = dtype_boolean;
desc->dsc_length = sizeof(UCHAR);
break;
default:
fb_assert_continue(FALSE);
return NULL;