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
e4b6264f
Commit
e4b6264f
authored
Mar 23, 2006
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/usr/home/bar/mysql-5.0
into mysql.com:/usr/home/bar/mysql-5.1-new
parents
b372b28e
6ed5cdfd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
sql-common/client.c
sql-common/client.c
+11
-2
strings/ctype-czech.c
strings/ctype-czech.c
+1
-1
No files found.
sql-common/client.c
View file @
e4b6264f
...
...
@@ -1428,7 +1428,13 @@ mysql_init(MYSQL *mysql)
mysql
->
free_me
=
1
;
}
else
bzero
((
char
*
)
(
mysql
),
sizeof
(
*
(
mysql
)));
{
#if defined(EMBEDDED_LIBRARY) || MYSQL_VERSION_ID >= 50100
bzero
((
char
*
)
(
mysql
),
sizeof
(
*
(
mysql
)));
#else
bzero
((
char
*
)
(
mysql
),
offsetof
(
MYSQL
,
info_buffer
));
#endif
}
mysql
->
options
.
connect_timeout
=
CONNECT_TIMEOUT
;
mysql
->
last_used_con
=
mysql
->
next_slave
=
mysql
->
master
=
mysql
;
mysql
->
charset
=
default_charset_info
;
...
...
@@ -2341,9 +2347,12 @@ static void mysql_close_free(MYSQL *mysql)
my_free
(
mysql
->
user
,
MYF
(
MY_ALLOW_ZERO_PTR
));
my_free
(
mysql
->
passwd
,
MYF
(
MY_ALLOW_ZERO_PTR
));
my_free
(
mysql
->
db
,
MYF
(
MY_ALLOW_ZERO_PTR
));
#if defined(EMBEDDED_LIBRARY) || MYSQL_VERSION_ID >= 50100
my_free
(
mysql
->
info_buffer
,
MYF
(
MY_ALLOW_ZERO_PTR
));
mysql
->
info_buffer
=
0
;
#endif
/* Clear pointers for better safety */
mysql
->
info_buffer
=
mysql
->
host_info
=
mysql
->
user
=
mysql
->
passwd
=
mysql
->
db
=
0
;
mysql
->
host_info
=
mysql
->
user
=
mysql
->
passwd
=
mysql
->
db
=
0
;
}
...
...
strings/ctype-czech.c
View file @
e4b6264f
...
...
@@ -356,7 +356,7 @@ static int my_strnxfrm_czech(CHARSET_INFO *cs __attribute__((unused)),
#ifdef REAL_MYSQL
#define min_sort_char
0
#define min_sort_char
' '
#define max_sort_char '9'
#define EXAMPLE
...
...
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