diff options
author | unknown <monty@donna.mysql.com> | 2001-01-15 17:17:43 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-15 17:17:43 +0200 |
commit | 4d37689abeeaacb662c31d58038d2386a5228f8f (patch) | |
tree | 4264a6499afeab1b99e53f927059e5450643a435 /myisam/mi_check.c | |
parent | 4e264107df5c286d0a06ff28699aec398e36e684 (diff) | |
download | mariadb-git-4d37689abeeaacb662c31d58038d2386a5228f8f.tar.gz |
Fixed test when exeeding file quota on write
Sanity checks when opening MyISAM files
Docs/manual.texi:
Added information about Borland c++
myisam/mi_check.c:
Cleanup
myisam/mi_open.c:
Added sanity checking
myisam/myisamchk.c:
Better error messages
mysys/my_chsize.c:
Cleanup
mysys/my_seek.c:
Changed debug message
mysys/my_write.c:
Fixed test when exeeding file quota
Diffstat (limited to 'myisam/mi_check.c')
-rw-r--r-- | myisam/mi_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c index b394fb25e97..67503bd4f6c 100644 --- a/myisam/mi_check.c +++ b/myisam/mi_check.c @@ -543,7 +543,7 @@ static int chk_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo, if (next_page+info->s->blocksize > max_length) goto err; info->state->key_file_length=(max_length & - ~ (my_off_t) (info->s->blocksize-1)); + ~ (my_off_t) (info->s->blocksize-1)); } if (!_mi_fetch_keypage(info,keyinfo,next_page,temp_buff,0)) { |