mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 23:35:32 +02:00
Applied innodb-5.0-ss1230 snapshot
Fixes: - Bug #25596: innobase/dict/dict0dict.c: Applied innodb-5.0-ss1230 snapshot. r1230 branches/5.0: ib_isspace(c): Check for c being the null character. (Bug #25596) sql/ha_innodb.h: Applied innodb-5.0-ss1230 Trivial indent SPACES -> TAB change.
This commit is contained in:
parent
644e6c7fdd
commit
b238db620b
2 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue