Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
da95b5f8
Commit
da95b5f8
authored
Dec 05, 2008
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#40416 - Maria: Memory allocated at trnman.c:129 was underrun.
we cannot access a trn after we put it in the pool
parent
a7d9a38e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
storage/maria/trnman.c
storage/maria/trnman.c
+11
-5
No files found.
storage/maria/trnman.c
View file @
da95b5f8
...
...
@@ -359,7 +359,7 @@ TRN *trnman_new_trn(WT_THD *wt)
return
0
;
}
DBUG_PRINT
(
"exit"
,
(
"trn: x%lx trid: 0x%lu"
,
DBUG_PRINT
(
"exit"
,
(
"trn:
0
x%lx trid: 0x%lu"
,
(
ulong
)
trn
,
(
ulong
)
trn
->
trid
));
DBUG_RETURN
(
trn
);
...
...
@@ -385,9 +385,11 @@ TRN *trnman_new_trn(WT_THD *wt)
my_bool
trnman_end_trn
(
TRN
*
trn
,
my_bool
commit
)
{
int
res
=
1
;
uint16
cached_short_id
=
trn
->
short_id
;
/* we have to cache it, see below */
TRN
*
free_me
=
0
;
LF_PINS
*
pins
=
trn
->
pins
;
DBUG_ENTER
(
"trnman_end_trn"
);
DBUG_PRINT
(
"enter"
,
(
"trn=0x%lx commit=%d"
,
trn
,
commit
));
DBUG_ASSERT
(
trn
->
rec_lsn
==
0
);
/* if a rollback, all UNDO records should have been executed */
...
...
@@ -454,12 +456,17 @@ my_bool trnman_end_trn(TRN *trn, my_bool commit)
res
=
-
1
;
trnman_active_transactions
--
;
DBUG_PRINT
(
"info"
,
(
"pthread_mutex_unlock LOCK_trn_list"
));
pthread_mutex_unlock
(
&
LOCK_trn_list
);
DBUG_ASSERT
(
trn
->
short_id
);
/* the rest is done outside of a critical section */
/*
the rest is done outside of a critical section
note that we don't own trn anymore, it may be in a shared list now.
Thus, we cannot dereference it, and must use cached_short_id below.
*/
my_atomic_rwlock_rdlock
(
&
LOCK_short_trid_to_trn
);
my_atomic_storeptr
((
void
**
)
&
short_trid_to_active_trn
[
trn
->
short_id
],
0
);
my_atomic_storeptr
((
void
**
)
&
short_trid_to_active_trn
[
cached_
short_id
],
0
);
my_atomic_rwlock_rdunlock
(
&
LOCK_short_trid_to_trn
);
/*
...
...
@@ -504,7 +511,6 @@ void trnman_free_trn(TRN *trn)
*/
union
{
TRN
*
trn
;
void
*
v
;
}
tmp
;
pthread_mutex_lock
(
&
trn
->
state_lock
);
trn
->
short_id
=
0
;
pthread_mutex_unlock
(
&
trn
->
state_lock
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment