diff options
author | reggie@mdk10.(none) <> | 2005-05-20 16:04:10 -0500 |
---|---|---|
committer | reggie@mdk10.(none) <> | 2005-05-20 16:04:10 -0500 |
commit | 48c584537d3f45263be1fa8bbadab5c14267d3ff (patch) | |
tree | 3c11d9563166e2b2ee03a1165069c1f02dfba30a /mysys/Makefile.am | |
parent | d7a98ea7b8812dd63f5eb2cceaa2adaa5c0525dc (diff) | |
download | mariadb-git-48c584537d3f45263be1fa8bbadab5c14267d3ff.tar.gz |
BUG# 9148: Denial of service
The problem was that on Windows the access method indicates that access to file
such as "com1" and "lpt1" is allowed (since they are device names) and
this causes mysql to attempt to open them as databases or tables.
The fix was to write our own my_access method that uses other Win32 functions
to determine if the given argument is indeed a file and has to requested
mode.
Diffstat (limited to 'mysys/Makefile.am')
-rw-r--r-- | mysys/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/Makefile.am b/mysys/Makefile.am index 3ae9c05bff5..ab35ccb21ba 100644 --- a/mysys/Makefile.am +++ b/mysys/Makefile.am @@ -53,7 +53,7 @@ libmysys_a_SOURCES = my_init.c my_getwd.c mf_getdate.c \ my_net.c my_semaphore.c my_port.c my_sleep.c \ charset.c charset-def.c my_bitmap.c my_bit.c md5.c \ my_gethostbyname.c rijndael.c my_aes.c sha1.c \ - my_handler.c my_netware.c my_windac.c + my_handler.c my_netware.c my_windac.c my_access.c EXTRA_DIST = thr_alarm.c thr_lock.c my_pthread.c my_thr_init.c \ thr_mutex.c thr_rwlock.c libmysys_a_LIBADD = @THREAD_LOBJECTS@ |