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

Fixed one reason of the well-known "decompression overran buffer" error.

This commit is contained in:
dimitr 2002-09-29 15:44:11 +00:00
parent 8b08f0f797
commit 1ae3fa7078

View File

@ -2170,6 +2170,10 @@ REC VIO_record(TDBB tdbb, register RPB * rpb, FMT format, JrdMemoryPool *pool)
if (rpb->rpb_prior == old)
rpb->rpb_prior = record;
}
else
{
record->rec_length = format->fmt_length;
}
record->rec_format = format;