mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
(partially) Fix Bug#55227 Fix compiler warnings in innodb with gcc 4.6
Fix compiler warning: handler/ha_innodb.cc: In function 'bool innodb_show_status(handlerton*, THD*, bool (*)(THD*, const char*, uint, const char*, uint, const char*, uint))': handler/ha_innodb.cc:8851:7: error: variable 'result' set but not used [-Werror=unused-but-set-variable]
This commit is contained in:
@@ -8848,12 +8848,9 @@ innodb_show_status(
|
|||||||
|
|
||||||
mutex_exit(&srv_monitor_file_mutex);
|
mutex_exit(&srv_monitor_file_mutex);
|
||||||
|
|
||||||
bool result = FALSE;
|
stat_print(thd, innobase_hton_name, (uint) strlen(innobase_hton_name),
|
||||||
|
STRING_WITH_LEN(""), str, flen);
|
||||||
|
|
||||||
if (stat_print(thd, innobase_hton_name, (uint) strlen(innobase_hton_name),
|
|
||||||
STRING_WITH_LEN(""), str, flen)) {
|
|
||||||
result= TRUE;
|
|
||||||
}
|
|
||||||
my_free(str, MYF(0));
|
my_free(str, MYF(0));
|
||||||
|
|
||||||
DBUG_RETURN(FALSE);
|
DBUG_RETURN(FALSE);
|
||||||
|
Reference in New Issue
Block a user