Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c82c07dc
Commit
c82c07dc
authored
May 10, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/kent/mysql/cw/mysql-4.1
parents
7c65e20e
4bf24254
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
BUILD/check-cpu
BUILD/check-cpu
+1
-0
strings/ctype-big5.c
strings/ctype-big5.c
+1
-1
strings/ctype-cp932.c
strings/ctype-cp932.c
+1
-1
No files found.
BUILD/check-cpu
View file @
c82c07dc
...
...
@@ -57,6 +57,7 @@ case "$cpu_family--$model_name" in
;;
*
Pentium
*
M
*
pro
*
)
cpu_flag
=
"pentium-m"
;
cpu_flag_old
=
"pentium"
;
;;
*
Athlon
*
64
*
)
cpu_flag
=
"athlon64"
;
...
...
strings/ctype-big5.c
View file @
c82c07dc
...
...
@@ -6285,7 +6285,7 @@ uint my_well_formed_len_big5(CHARSET_INFO *cs __attribute__((unused)),
const
char
*
emb
=
e
-
1
;
/* Last possible end of an MB character */
*
error
=
0
;
while
(
pos
&&
b
<
e
)
while
(
pos
--
&&
b
<
e
)
{
if
((
uchar
)
b
[
0
]
<
128
)
{
...
...
strings/ctype-cp932.c
View file @
c82c07dc
...
...
@@ -5417,7 +5417,7 @@ uint my_well_formed_len_cp932(CHARSET_INFO *cs __attribute__((unused)),
{
const
char
*
b0
=
b
;
*
error
=
0
;
while
(
pos
&&
b
<
e
)
while
(
pos
--
&&
b
<
e
)
{
/*
Cast to int8 for extra safety.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment