Commit 5fce14da authored by Monty's avatar Monty

Removed wrong DBUG_DUMP that accessed not initialized memory.

parent cca611d1
...@@ -8294,6 +8294,7 @@ uchar *Field_blob::pack(uchar *to, const uchar *from, uint max_length) ...@@ -8294,6 +8294,7 @@ uchar *Field_blob::pack(uchar *to, const uchar *from, uint max_length)
@return New pointer into memory based on from + length of the data @return New pointer into memory based on from + length of the data
*/ */
const uchar *Field_blob::unpack(uchar *to, const uchar *from, const uchar *Field_blob::unpack(uchar *to, const uchar *from,
const uchar *from_end, uint param_data) const uchar *from_end, uint param_data)
{ {
...@@ -8311,7 +8312,6 @@ const uchar *Field_blob::unpack(uchar *to, const uchar *from, ...@@ -8311,7 +8312,6 @@ const uchar *Field_blob::unpack(uchar *to, const uchar *from,
DBUG_RETURN(0); DBUG_RETURN(0);
store(reinterpret_cast<const char*>(from) + master_packlength, store(reinterpret_cast<const char*>(from) + master_packlength,
length, field_charset); length, field_charset);
DBUG_DUMP("record", to, table->s->reclength);
DBUG_RETURN(from + master_packlength + length); DBUG_RETURN(from + master_packlength + length);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment