summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-04-26 21:10:13 +0300
committermonty@mashka.mysql.fi <>2003-04-26 21:10:13 +0300
commit8b20a878cc1f420739a726a9be87d074390b899a (patch)
treeb6c7972aefbe2a8d4c3651b65e740684673ec52b /mysys
parentbf6cfd2948f4cbab120a76aaf16d7ca0739cf2f4 (diff)
parentf88097eee92ac4efbcc38e325f751a60677dab6f (diff)
downloadmariadb-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.c2
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;