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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f629f535
Commit
f629f535
authored
Jun 27, 2016
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix memory leak in XtraDB.
parent
94a61838
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
mysql-test/suite/galera/suite.pm
mysql-test/suite/galera/suite.pm
+0
-1
mysql-test/suite/wsrep/suite.pm
mysql-test/suite/wsrep/suite.pm
+0
-1
storage/xtradb/srv/srv0srv.cc
storage/xtradb/srv/srv0srv.cc
+3
-0
No files found.
mysql-test/suite/galera/suite.pm
View file @
f629f535
...
...
@@ -68,7 +68,6 @@ push @::global_suppressions,
qr|WSREP: gcs_caused\(\) returned .*|
,
qr|WSREP: Protocol violation. JOIN message sender .* is not in state transfer \(SYNCED\). Message ignored.|
,
qr(WSREP: Action message in non-primary configuration from member [0-9]*)
,
qr(InnoDB: Some resources were not cleaned up in shutdown.*)
,
);
...
...
mysql-test/suite/wsrep/suite.pm
View file @
f629f535
...
...
@@ -29,7 +29,6 @@ push @::global_suppressions,
qr(WSREP: option --wsrep-causal-reads is deprecated)
,
qr(WSREP: --wsrep-causal-reads=ON takes precedence over --wsrep-sync-wait=0)
,
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|
,
qr(InnoDB: Some resources were not cleaned up in shutdown.*)
,
);
$ENV
{
PATH
}
=
"
$epath
:
$ENV
{PATH}
";
...
...
storage/xtradb/srv/srv0srv.cc
View file @
f629f535
...
...
@@ -1209,6 +1209,9 @@ srv_free(void)
os_event_free
(
srv_buf_dump_event
);
os_event_free
(
srv_checkpoint_completed_event
);
os_event_free
(
srv_redo_log_tracked_event
);
#ifdef WITH_INNODB_DISALLOW_WRITES
os_event_free
(
srv_allow_writes_event
);
#endif
/* WITH_INNODB_DISALLOW_WRITES */
mutex_free
(
&
srv_sys
->
mutex
);
mutex_free
(
&
srv_sys
->
tasks_mutex
);
}
...
...
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