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
795dabef
Commit
795dabef
authored
Jun 07, 2007
by
anozdrin/alik@ibm
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-runtime
into ibm.:/home/alik/Documents/MySQL/devel/5.0-rt-bug275920-2
parents
bacc6ee0
6dce2955
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
tests/mysql_client_test.c
tests/mysql_client_test.c
+54
-0
No files found.
tests/mysql_client_test.c
View file @
795dabef
...
...
@@ -15623,6 +15623,59 @@ static void test_bug27876()
}
/*
Bug#27592 (stack overrun when storing datetime value using prepared statements)
*/
static
void
test_bug27592
()
{
const
int
NUM_ITERATIONS
=
40
;
int
i
;
int
rc
;
MYSQL_STMT
*
stmt
=
NULL
;
MYSQL_BIND
bind
[
1
];
MYSQL_TIME
time_val
;
DBUG_ENTER
(
"test_bug27592"
);
myheader
(
"test_bug27592"
);
mysql_query
(
mysql
,
"DROP TABLE IF EXISTS t1"
);
mysql_query
(
mysql
,
"CREATE TABLE t1(c2 DATETIME)"
);
stmt
=
mysql_simple_prepare
(
mysql
,
"INSERT INTO t1 VALUES (?)"
);
DIE_UNLESS
(
stmt
);
memset
(
bind
,
0
,
sizeof
(
bind
));
bind
[
0
].
buffer_type
=
MYSQL_TYPE_DATETIME
;
bind
[
0
].
buffer
=
(
char
*
)
&
time_val
;
bind
[
0
].
length
=
NULL
;
for
(
i
=
0
;
i
<
NUM_ITERATIONS
;
i
++
)
{
time_val
.
year
=
1000
+
lrand48
()
%
1000
;
time_val
.
month
=
1
+
lrand48
()
%
12
;
time_val
.
day
=
1
+
lrand48
()
%
31
;
time_val
.
hour
=
lrand48
()
%
23
;
time_val
.
minute
=
lrand48
()
%
59
;
time_val
.
second
=
lrand48
()
%
59
;
time_val
.
second_part
=
0
;
time_val
.
neg
=
0
;
rc
=
mysql_stmt_bind_param
(
stmt
,
bind
);
check_execute
(
stmt
,
rc
);
rc
=
mysql_stmt_execute
(
stmt
);
check_execute
(
stmt
,
rc
);
}
mysql_stmt_close
(
stmt
);
DBUG_VOID_RETURN
;
}
/*
Read and parse arguments and MySQL options from my.cnf
*/
...
...
@@ -15904,6 +15957,7 @@ static struct my_tests_st my_tests[]= {
{
"test_bug21635"
,
test_bug21635
},
{
"test_bug24179"
,
test_bug24179
},
{
"test_bug27876"
,
test_bug27876
},
{
"test_bug27592"
,
test_bug27592
},
{
0
,
0
}
};
...
...
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