diff options
author | Thomas Heller <theller@ctypes.org> | 2006-07-13 17:01:14 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-07-13 17:01:14 (GMT) |
commit | 2bdf29ec28fa5f5284d57672d63fdd8402030a92 (patch) | |
tree | 05006ea2f41f79983b27ecce946b29c1436a3a7b /Misc | |
parent | b4dc2ef5dacf833327f0db4b9acf8761e1f7b21b (diff) | |
download | cpython-2bdf29ec28fa5f5284d57672d63fdd8402030a92.zip cpython-2bdf29ec28fa5f5284d57672d63fdd8402030a92.tar.gz cpython-2bdf29ec28fa5f5284d57672d63fdd8402030a92.tar.bz2 |
Fix #1521375. When running with root priviledges, 'gcc -o /dev/null'
did overwrite /dev/null. Use a temporary file instead of /dev/null.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ Library Extension Modules ----------------- +- Bug #1521375: The code in ctypes.util.find_library was + run with root priviledges, it could overwrite or delete + /dev/null in certain cases; this is now fixed. + - Bug #1467450: On Mac OS X 10.3, RTLD_GLOBAL is now used as the default mode for loading shared libraries in ctypes. |