diff options
author | tsmith@siva.hindu.god <> | 2007-01-21 17:58:02 -0700 |
---|---|---|
committer | tsmith@siva.hindu.god <> | 2007-01-21 17:58:02 -0700 |
commit | 7ce6170cf9682ba3535413e018346ca232c0d2a6 (patch) | |
tree | 016679045796ba53e07858601f592dede5f68e44 /innobase | |
parent | 205f7a0583f5ba5cc0c6428fa6e44c74b534d8e8 (diff) | |
download | mariadb-git-7ce6170cf9682ba3535413e018346ca232c0d2a6.tar.gz |
Applied innodb-5.0-ss1230 snapshot
Fixes:
- Bug #25596:
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/dict/dict0dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/dict/dict0dict.c b/innobase/dict/dict0dict.c index ba03e1f5e41..df48a8a4b5a 100644 --- a/innobase/dict/dict0dict.c +++ b/innobase/dict/dict0dict.c @@ -28,7 +28,7 @@ Created 1/8/1996 Heikki Tuuri #include "rem0cmp.h" /* 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 */ |