mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fixed problems noticed with last build
mysql-test/r/lowercase_table2.result: Fixed typo mysql-test/r/repair.result: Portability fix (For OpenBSD) mysql-test/t/repair.test: Portability fix (For OpenBSD) mysys/my_thr_init.c: Fixed crasch with some tests on OpenBSD. sql/field.cc: Don't truncate big values (Caused a core dump on Linux-Alpha for big values) sql/log.cc: More DBUG
This commit is contained in:
@@ -203,7 +203,8 @@ void my_thread_end(void)
|
||||
tmp->dbug=0;
|
||||
}
|
||||
#endif
|
||||
#if !defined(__bsdi__) || defined(HAVE_mit_thread) /* bsdi dumps core here */
|
||||
#if !defined(__bsdi__) && !defined(__OpenBSD__) || defined(HAVE_mit_thread)
|
||||
/* bsdi and openbsd 3.5 dumps core here */
|
||||
pthread_cond_destroy(&tmp->suspend);
|
||||
#endif
|
||||
pthread_mutex_destroy(&tmp->mutex);
|
||||
|
||||
Reference in New Issue
Block a user