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

Simplify Vlad's DYN_skip_blr_blob but with this change, it becomes the same as DYN_skip_attribute and thus it's candidate for removal.

This commit is contained in:
robocop 2006-11-05 03:55:25 +00:00
parent 2ec1662140
commit ec0ea31c19

View File

@ -958,12 +958,6 @@ USHORT DYN_skip_blr_blob(const UCHAR** ptr)
const UCHAR* p = *ptr;
USHORT length = *p++;
length |= (*p++) << 8;
if (!length) {
*ptr = p;
return length;
}
*ptr = p + length;
return length;