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
d7e9fd07
Commit
d7e9fd07
authored
Jan 09, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cset exclude: thek@kpdesk.mysql.com|ChangeSet|20061106104152|07628
mysys/mf_iocache.c: Exclude mysys/my_seek.c: Exclude
parent
51a360a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
10 deletions
+1
-10
mysys/mf_iocache.c
mysys/mf_iocache.c
+1
-5
mysys/my_seek.c
mysys/my_seek.c
+0
-5
No files found.
mysys/mf_iocache.c
View file @
d7e9fd07
...
@@ -313,11 +313,7 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
...
@@ -313,11 +313,7 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
if
(
info
->
type
==
READ_CACHE
)
if
(
info
->
type
==
READ_CACHE
)
{
{
info
->
write_end
=
info
->
write_buffer
+
info
->
buffer_length
;
info
->
write_end
=
info
->
write_buffer
+
info
->
buffer_length
;
/*
info
->
seek_not_done
=
1
;
Trigger a new seek only if we have a valid
file handle.
*/
info
->
seek_not_done
=
(
info
->
file
>=
0
);
}
}
info
->
end_of_file
=
~
(
my_off_t
)
0
;
info
->
end_of_file
=
~
(
my_off_t
)
0
;
}
}
...
...
mysys/my_seek.c
View file @
d7e9fd07
...
@@ -30,11 +30,6 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
...
@@ -30,11 +30,6 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
whence
,
MyFlags
));
whence
,
MyFlags
));
DBUG_ASSERT
(
pos
!=
MY_FILEPOS_ERROR
);
/* safety check */
DBUG_ASSERT
(
pos
!=
MY_FILEPOS_ERROR
);
/* safety check */
/*
Make sure we are using a valid file descriptor
*/
DBUG_ASSERT
(
fd
>=
0
);
newpos
=
lseek
(
fd
,
pos
,
whence
);
newpos
=
lseek
(
fd
,
pos
,
whence
);
if
(
newpos
==
(
os_off_t
)
-
1
)
if
(
newpos
==
(
os_off_t
)
-
1
)
{
{
...
...
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