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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e7977bab
Commit
e7977bab
authored
May 17, 2007
by
dkatz@damien-katzs-computer.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge damien-katzs-computer.local:/Users/dkatz/mysql50
into damien-katzs-computer.local:/Users/dkatz/mysql51
parents
b1304050
89e28d00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/filesort.cc
sql/filesort.cc
+2
-2
No files found.
sql/filesort.cc
View file @
e7977bab
...
...
@@ -376,7 +376,7 @@ static BUFFPEK *read_buffpek_from_file(IO_CACHE *buffpek_pointers, uint count)
ulong
length
;
BUFFPEK
*
tmp
;
DBUG_ENTER
(
"read_buffpek_from_file"
);
if
(
(
ulong
)
count
>
ULONG
_MAX
/
sizeof
(
BUFFPEK
))
if
(
count
>
UINT
_MAX
/
sizeof
(
BUFFPEK
))
return
0
;
/* sizeof(BUFFPEK)*count will overflow */
tmp
=
(
BUFFPEK
*
)
my_malloc
(
length
=
sizeof
(
BUFFPEK
)
*
count
,
MYF
(
MY_WME
));
if
(
tmp
)
...
...
@@ -629,7 +629,7 @@ write_keys(SORTPARAM *param, register uchar **sort_keys, uint count,
MYF
(
MY_WME
)))
goto
err
;
/* purecov: inspected */
/* check we won't have more buffpeks than we can possibly keep in memory */
if
(
my_b_tell
(
buffpek_pointers
)
+
sizeof
(
BUFFPEK
)
>
(
ulonglong
)
U
LONG
_MAX
)
if
(
my_b_tell
(
buffpek_pointers
)
+
sizeof
(
BUFFPEK
)
>
(
ulonglong
)
U
INT
_MAX
)
goto
err
;
buffpek
.
file_pos
=
my_b_tell
(
tempfile
);
if
((
ha_rows
)
count
>
param
->
max_rows
)
...
...
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