Skip to content

Commit 5fce14d

Browse files
committed
Removed wrong DBUG_DUMP that accessed not initialized memory.
1 parent cca611d commit 5fce14d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/field.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8294,6 +8294,7 @@ uchar *Field_blob::pack(uchar *to, const uchar *from, uint max_length)
82948294
82958295
@return New pointer into memory based on from + length of the data
82968296
*/
8297+
82978298
const uchar *Field_blob::unpack(uchar *to, const uchar *from,
82988299
const uchar *from_end, uint param_data)
82998300
{
@@ -8311,7 +8312,6 @@ const uchar *Field_blob::unpack(uchar *to, const uchar *from,
83118312
DBUG_RETURN(0);
83128313
store(reinterpret_cast<const char*>(from) + master_packlength,
83138314
length, field_charset);
8314-
DBUG_DUMP("record", to, table->s->reclength);
83158315
DBUG_RETURN(from + master_packlength + length);
83168316
}
83178317

0 commit comments

Comments
 (0)