Commit 7ce6170c authored by tsmith@siva.hindu.god's avatar tsmith@siva.hindu.god

Applied innodb-5.0-ss1230 snapshot

Fixes:
- Bug #25596: 
parent 205f7a05
...@@ -28,7 +28,7 @@ Created 1/8/1996 Heikki Tuuri ...@@ -28,7 +28,7 @@ Created 1/8/1996 Heikki Tuuri
#include "rem0cmp.h" #include "rem0cmp.h"
/* Implement isspace() in a locale-independent way. (Bug #24299) */ /* Implement isspace() in a locale-independent way. (Bug #24299) */
#define ib_isspace(c) strchr(" \v\f\t\r\n", c) #define ib_isspace(c) ((char) (c) && strchr(" \v\f\t\r\n", c))
dict_sys_t* dict_sys = NULL; /* the dictionary system */ dict_sys_t* dict_sys = NULL; /* the dictionary system */
......
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