diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-10-01 10:46:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-10-01 10:46:46 (GMT) |
commit | cfb60ee1e88118ca50254cf073b934a136e9f96a (patch) | |
tree | 7f70825383edcad46001fdd5c63fe9265f69a57c /Mac/Modules/ctl/ctlscan.py | |
parent | cc778ebd62a5e256c6cf44b32f417658cce1751c (diff) | |
download | cpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.zip cpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.tar.gz cpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.tar.bz2 |
Fixed very nasty null-dereferencing bug in DisposeControl/destroy
object.
Diffstat (limited to 'Mac/Modules/ctl/ctlscan.py')
-rw-r--r-- | Mac/Modules/ctl/ctlscan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ctl/ctlscan.py b/Mac/Modules/ctl/ctlscan.py index 661cbfe..d3e185e 100644 --- a/Mac/Modules/ctl/ctlscan.py +++ b/Mac/Modules/ctl/ctlscan.py @@ -30,7 +30,7 @@ class MyScanner(Scanner): def makeblacklistnames(self): return [ - 'DisposeControl' # Implied by deletion of control object + 'DisposeControl', # Generated manually 'KillControls', # Implied by close of dialog 'SetCtlAction', ] |