From b3cc65c5166295694b311e3168e393416eff0cd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 7 Jun 2018 11:16:20 +0300 Subject: [PATCH] Add missing binlog_checksum initialization The variable was not initialized. --- server/modules/routing/avrorouter/avro.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/server/modules/routing/avrorouter/avro.cc b/server/modules/routing/avrorouter/avro.cc index cec7d5694..fd253fd23 100644 --- a/server/modules/routing/avrorouter/avro.cc +++ b/server/modules/routing/avrorouter/avro.cc @@ -541,6 +541,7 @@ Avro::Avro(SERVICE* service, MXS_CONFIG_PARAMETER* params, sqlite3* handle, SERV binlog_fd(-1), event_types(0), event_type_hdr_lens{0}, + binlog_checksum(0), trx_count(0), trx_target(config_get_integer(params, "group_trx")), row_count(0),