Merge lp:~akopytov/percona-server/bug1189743-5.5 into lp:percona-server/5.5

Proposed by Alexey Kopytov
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 552
Proposed branch: lp:~akopytov/percona-server/bug1189743-5.5
Merge into: lp:percona-server/5.5
Diff against target: 30 lines (+3/-3)
1 file modified
Percona-Server/storage/innobase/trx/trx0trx.c (+3/-3)
To merge this branch: bzr merge lp:~akopytov/percona-server/bug1189743-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Registry Administrators Pending
Review via email: mp+172471@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Percona-Server/storage/innobase/trx/trx0trx.c'
--- Percona-Server/storage/innobase/trx/trx0trx.c 2013-05-31 13:06:00 +0000
+++ Percona-Server/storage/innobase/trx/trx0trx.c 2013-07-02 07:11:30 +0000
@@ -220,7 +220,7 @@
220 ut_ad(mutex_own(&kernel_mutex));220 ut_ad(mutex_own(&kernel_mutex));
221 ut_ad(sess);221 ut_ad(sess);
222222
223 trx = ut_malloc(sizeof(trx_t));223 trx = mem_alloc(sizeof(trx_t));
224224
225 trx->magic_n = TRX_MAGIC_N;225 trx->magic_n = TRX_MAGIC_N;
226226
@@ -489,7 +489,7 @@
489489
490 trx_release_descriptor(trx);490 trx_release_descriptor(trx);
491491
492 ut_free(trx);492 mem_free(trx);
493}493}
494494
495/********************************************************************//**495/********************************************************************//**
@@ -547,7 +547,7 @@
547547
548 ut_ad(trx_sys->descr_n_used <= UT_LIST_GET_LEN(trx_sys->trx_list));548 ut_ad(trx_sys->descr_n_used <= UT_LIST_GET_LEN(trx_sys->trx_list));
549549
550 ut_free(trx);550 mem_free(trx);
551}551}
552552
553/********************************************************************//**553/********************************************************************//**

Subscribers

People subscribed via source and target branches