1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

A fix for handling endianess in Field_blob::unpack().

This commit is contained in:
rafal@quant.(none)
2007-08-28 10:37:29 +02:00
parent 7d72a132b6
commit 88b8ad10c5

View File

@@ -7662,7 +7662,7 @@ const uchar *Field_blob::unpack(uchar *to,
const uchar *Field_blob::unpack(uchar *to, const uchar *from)
{
uint32 length=get_length(from);
uint32 length=get_length(from,TRUE);
#ifdef WORDS_BIGENDIAN
if (!table->s->db_low_byte_first)
{