diff options
author | unknown <reggie@mdk10.(none)> | 2005-05-23 14:48:25 -0500 |
---|---|---|
committer | unknown <reggie@mdk10.(none)> | 2005-05-23 14:48:25 -0500 |
commit | 97bde75e4ed215354f86f1fd220e5eaf25920fc7 (patch) | |
tree | 29f0a6a8643629fff4ef73095865522b077268f6 /mysys/my_fopen.c | |
parent | 442c072fdf6c7dd2b7fcad5a44c6438b980629f4 (diff) | |
download | mariadb-git-97bde75e4ed215354f86f1fd220e5eaf25920fc7.tar.gz |
BUG# 9148 Denial of service
fixups of test case and comment formatting
BitKeeper/deleted/.del-reserved_win_names-master.opt~e56da049a7ce9a5b:
***MISSING TEXT***
mysql-test/r/lowercase_table.result:
added my test for bug #9148 to this test case
mysql-test/t/lowercase_table.test:
added my test for bug #9148 to this test case
mysys/my_fopen.c:
reformatted comments
mysys/my_open.c:
reformatted comments
Diffstat (limited to 'mysys/my_fopen.c')
-rw-r--r-- | mysys/my_fopen.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysys/my_fopen.c b/mysys/my_fopen.c index 208e7e80fd8..4310250bd0d 100644 --- a/mysys/my_fopen.c +++ b/mysys/my_fopen.c @@ -34,8 +34,9 @@ FILE *my_fopen(const char *FileName, int Flags, myf MyFlags) DBUG_PRINT("my",("Name: '%s' Flags: %d MyFlags: %d", FileName, Flags, MyFlags)); /* - * if we are not creating, then we need to use my_access to make sure - * the file exists since Windows doesn't handle files like "com1.sym" very well + if we are not creating, then we need to use my_access to make sure + the file exists since Windows doesn't handle files like "com1.sym" + very well */ #ifdef __WIN__ if (! (Flags & O_CREAT) && my_access(FileName, F_OK)) |