mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
addresses #648
dereferencing value in debug statement that could be NULL this fixes it. git-svn-id: file:///svn/mysql/tokudb-engine/src@3276 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
de910f49ab
commit
37f0d9b383
1 changed files with 1 additions and 1 deletions
|
@ -1735,7 +1735,7 @@ int ha_tokudb::read_row(int error, uchar * buf, uint keynr, DBT * row, DBT * fou
|
|||
row = ¤t_row;
|
||||
}
|
||||
unpack_row(buf, row);
|
||||
DBUG_DUMP("read row key", (uchar *) found_key->data, found_key->size);
|
||||
if (found_key) { DBUG_DUMP("read row key", (uchar *) found_key->data, found_key->size); }
|
||||
TOKUDB_DBUG_RETURN(0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue