summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsjaakola <seppo.jaakola@iki.fi>2015-02-10 00:47:02 +0200
committerNirbhay Choubey <nirbhay@mariadb.com>2015-05-04 13:04:52 -0400
commit70d6236afd55b74211fee507c5af6b2b631c3f26 (patch)
treec36d0efe55dda640ed6affd4049bdf5e742e901a
parentf6b1e0fe0a33c724839abab74ae07bbbd41a23e6 (diff)
downloadmariadb-git-70d6236afd55b74211fee507c5af6b2b631c3f26.tar.gz
refs codership/mysql-wsrep#55 - To avoid compiler warming:
sql/sql_parse.cc: In function 'bool do_command(THD*)': sql/sql_parse.cc:758:20: error: 'packet_length' may be used uninitialized in this function [-Werror=maybe-uninitialized] if ((WSREP(thd) && packet_length == packet_error) || [
-rw-r--r--sql/sql_parse.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc
index 991f960b2c4..c931a02661e 100644
--- a/sql/sql_parse.cc
+++ b/sql/sql_parse.cc
@@ -693,7 +693,11 @@ bool do_command(THD *thd)
{
bool return_value;
char *packet= 0;
+#ifdef WITH_WSREP
+ ulong packet_length= 0; // just to avoid (false positive) compiler warning
+#else
ulong packet_length;
+#endif /* WITH_WSREP */
NET *net= &thd->net;
enum enum_server_command command;
DBUG_ENTER("do_command");