Commit ab71e2ac authored by lars@mysql.com's avatar lars@mysql.com

Merge mysql.com:/users/lthalmann/bk/mysql-5.0-release-bug18116

into  mysql.com:/users/lthalmann/bk/mysql-5.0
parents 010a8a57 9a12ddcf
...@@ -1882,7 +1882,11 @@ DBUG_skip_commit: ...@@ -1882,7 +1882,11 @@ DBUG_skip_commit:
rotate binlog, if necessary. rotate binlog, if necessary.
*/ */
if (commit_event->get_type_code() == XID_EVENT) if (commit_event->get_type_code() == XID_EVENT)
thread_safe_increment(prepared_xids, &LOCK_prep_xids); {
pthread_mutex_lock(&LOCK_prep_xids);
prepared_xids++;
pthread_mutex_unlock(&LOCK_prep_xids);
}
else else
rotate_and_purge(RP_LOCK_LOG_IS_ALREADY_LOCKED); rotate_and_purge(RP_LOCK_LOG_IS_ALREADY_LOCKED);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment