diff options
author | monty@mashka.mysql.fi <> | 2003-04-26 21:10:13 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-04-26 21:10:13 +0300 |
commit | 8b20a878cc1f420739a726a9be87d074390b899a (patch) | |
tree | b6c7972aefbe2a8d4c3651b65e740684673ec52b /mysys | |
parent | bf6cfd2948f4cbab120a76aaf16d7ca0739cf2f4 (diff) | |
parent | f88097eee92ac4efbcc38e325f751a60677dab6f (diff) | |
download | mariadb-git-8b20a878cc1f420739a726a9be87d074390b899a.tar.gz |
Merge with 3.23:
Set innobase_flush_log_at_trx_commit to 1 by default
Fix problem with timestamp on 64 bit systems
Reserve alarms for up to 10 slave threads
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/charset.c b/mysys/charset.c index 235fcb08023..0a76cf86a54 100644 --- a/mysys/charset.c +++ b/mysys/charset.c @@ -77,7 +77,7 @@ static my_bool get_word(struct simpleconfig_buf_st *fb, char *buf) endptr = fb->buf; } - while (!isspace(*endptr)) + while (*endptr && !isspace(*endptr)) *buf++= *endptr++; *buf=0; fb->p = endptr; |