diff options
author | unknown <ingo@mysql.com> | 2004-10-20 13:52:56 +0200 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2004-10-20 13:52:56 +0200 |
commit | 9de6a750f0cb59089a943b1b4c57b189dcbc6368 (patch) | |
tree | 8dcb524658217b4c12b4cc2cd8fa318930bde704 /sql/handler.cc | |
parent | 2da1cbd97dd566d629115f02321ab36aac069ce4 (diff) | |
download | mariadb-git-9de6a750f0cb59089a943b1b4c57b189dcbc6368.tar.gz |
Fixed a typo, which prevented non-valgrind build.
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 0e3153b09d6..cecf5689464 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -1325,7 +1325,7 @@ int ha_create_table_from_engine(THD* thd, } err_end: - my_free((char*) frmblob, MYF(MY_ALLOW_ZERO)); + my_free((char*) frmblob, MYF(MY_ALLOW_ZERO_PTR)); DBUG_RETURN(error); } |