summaryrefslogtreecommitdiff
path: root/sql/rpl_utility.cc
diff options
context:
space:
mode:
authorLuis Soares <luis.soares@sun.com>2009-12-24 15:55:46 +0000
committerLuis Soares <luis.soares@sun.com>2009-12-24 15:55:46 +0000
commitc5f7044d1a055752c30043c425d01bc1a32634cd (patch)
treef826af63c8ff349a8a7ca9d7b25e0c5af01f09e7 /sql/rpl_utility.cc
parentdcf8e115369c4e97ae092d091365ee07e2f819ed (diff)
downloadmariadb-git-c5f7044d1a055752c30043c425d01bc1a32634cd.tar.gz
Valgrind warnings that have poped up ever since WL#5151 was pushed.
This fixes two more warnings for tests: - rpl_row_colSize - rpl_typeconv
Diffstat (limited to 'sql/rpl_utility.cc')
-rw-r--r--sql/rpl_utility.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_utility.cc b/sql/rpl_utility.cc
index 1971077ab65..3d5b3baad30 100644
--- a/sql/rpl_utility.cc
+++ b/sql/rpl_utility.cc
@@ -816,7 +816,7 @@ table_def::compatible_with(THD *thd, Relay_log_info *rli,
rli->report(ERROR_LEVEL, ER_SLAVE_CONVERSION_FAILED,
ER(ER_SLAVE_CONVERSION_FAILED),
col, db_name, tbl_name,
- source_type.c_ptr(), target_type.c_ptr());
+ source_type.c_ptr_safe(), target_type.c_ptr_safe());
return false;
}
}