Merge lp:~jaypipes/drizzle/bug536818 into lp:~drizzle-trunk/drizzle/development

Proposed by Jay Pipes
Status: Merged
Merged at revision: not available
Proposed branch: lp:~jaypipes/drizzle/bug536818
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 10 lines (+1/-0)
1 file modified
plugin/transaction_log/module.cc (+1/-0)
To merge this branch: bzr merge lp:~jaypipes/drizzle/bug536818
Reviewer Review Type Date Requested Status
Drizzle Developers Pending
Review via email: mp+21200@code.launchpad.net

Description of the change

Simple patch to fix a valgrind warning for trx log applier.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugin/transaction_log/module.cc'
2--- plugin/transaction_log/module.cc 2010-03-05 18:24:28 +0000
3+++ plugin/transaction_log/module.cc 2010-03-12 00:27:18 +0000
4@@ -182,6 +182,7 @@
5 if (transaction_log)
6 {
7 registry.remove(transaction_log_applier);
8+ delete transaction_log_applier;
9 delete transaction_log;
10 delete transaction_log_index;
11