Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.5.42, 10.0(EOL)
Description
sql/log.cc
MYSQL_BIN_LOG::write_incident
|
|
mysql_mutex_lock(&LOCK_log);
|
if (likely(is_open()))
|
...
|
mysql_mutex_unlock(&LOCK_log);
|
}
|
DBUG_RETURN(error);
|
|
There is no mysql_mutex_unlock(LOCK_log) in the !likely(is_open()) if branch. It seems the caller of this function doesn't release it either.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
sql/log.cc {noformat} MYSQL_BIN_LOG::write_incident mysql_mutex_lock(&LOCK_log); if (likely(is_open())) ... mysql_mutex_unlock(&LOCK_log); } DBUG_RETURN(error); {noformat} There is no mutex_nounlock(LOCK_log) in the !likely(is_open()) if branch. It seems the caller of this function doesn't release it either. |
sql/log.cc {noformat} MYSQL_BIN_LOG::write_incident mysql_mutex_lock(&LOCK_log); if (likely(is_open())) ... mysql_mutex_unlock(&LOCK_log); } DBUG_RETURN(error); {noformat} There is no mysql_mutex_unlock(LOCK_log) in the !likely(is_open()) if branch. It seems the caller of this function doesn't release it either. |
Fix Version/s | 10.1 [ 16100 ] | |
Fix Version/s | 10.0 [ 16000 ] | |
Fix Version/s | 5.5 [ 15800 ] | |
Assignee | Kristian Nielsen [ knielsen ] | |
Summary | MYSQL_BIN_LOG::write_incident failing to release LOCK_log | [PATCH] MYSQL_BIN_LOG::write_incident failing to release LOCK_log |
Status | Open [ 1 ] | In Progress [ 3 ] |
Fix Version/s | 5.5.43 [ 18601 ] | |
Fix Version/s | 5.5 [ 15800 ] | |
Fix Version/s | 10.0 [ 16000 ] | |
Fix Version/s | 10.1 [ 16100 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Workflow | MariaDB v2 [ 60437 ] | MariaDB v3 [ 66306 ] |
Workflow | MariaDB v3 [ 66306 ] | MariaDB v4 [ 149044 ] |