From bf064c5b1d8977c31a67a904891eb4c1027d70ff Mon Sep 17 00:00:00 2001 From: Venkatesh Duggirala Date: Fri, 15 Mar 2013 08:56:20 +0530 Subject: [PATCH] Bug#16056813-MEMORY LEAK ON FILTERED SLAVE Back porting fix from mysql-5.5 --- sql/rpl_utility.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/rpl_utility.cc b/sql/rpl_utility.cc index d8c975fba90..23dc09793e4 100644 --- a/sql/rpl_utility.cc +++ b/sql/rpl_utility.cc @@ -1,5 +1,5 @@ /* - Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -280,6 +280,7 @@ void Deferred_log_events::rewind() Log_event *ev= *(Log_event **) dynamic_array_ptr(&array, i); delete ev; } + last_added= NULL; if (array.elements > array.max_element) freeze_size(&array); reset_dynamic(&array);