1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

libmysqld.vcproj:

Changed spelling "Commerical" to "Commercial"
mysqld.vcproj:
  Aligned engines with Unix version
sql_class.cc:
  VC7 needs my_free() cast of first arg to be (gptr)
my_global.h:
  Can't assume macro set_timespec_nsec exists if set_timespec does
This commit is contained in:
kent@mysql.com
2005-08-25 23:24:43 +02:00
parent 2af2f47395
commit 64c2d24978
4 changed files with 209 additions and 128 deletions

View File

@ -1947,7 +1947,7 @@ static byte *xid_get_hash_key(const byte *ptr,uint *length,
static void xid_free_hash (void *ptr)
{
if (!((XID_STATE*)ptr)->in_thd)
my_free((byte *)ptr, MYF(0));
my_free((gptr)ptr, MYF(0));
}
bool xid_cache_init()