diff options
author | hobbs <hobbs@noemail.net> | 2000-05-12 21:04:16 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2000-05-12 21:04:16 (GMT) |
commit | 193d1faaf483de282d1fbf5e523e1fa463ec367d (patch) | |
tree | 8d06a59941e1029c35a4b13648c7adcae721877e /generic/tkWindow.c | |
parent | 923eaa0ff888a2d305fb36f25a13dc0f7682dcd8 (diff) | |
download | tk-193d1faaf483de282d1fbf5e523e1fa463ec367d.zip tk-193d1faaf483de282d1fbf5e523e1fa463ec367d.tar.gz tk-193d1faaf483de282d1fbf5e523e1fa463ec367d.tar.bz2 |
added TK_DONT_DESTROY_WINDOW flag to check in RaiseWinWhenIdle to
prevent timing sensitive crash
FossilOrigin-Name: e89c5a9f60b390c5f34c0ba294e073170a36f4f5
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 7fa867f..f486234 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWindow.c,v 1.17 2000/04/28 00:46:04 ericm Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.16 2000/03/24 23:13:18 ericm Exp $ */ #include "tkPort.h" @@ -2665,8 +2665,8 @@ Tk_SafeInit(interp) * - Continuous ringing of the bell is a nuisance. * - Cannot allow access to the clipboard because a malicious script * can replace the contents with the string "rm -r *" and lead to - * surprises when the contents of the clipboard are pasted. Similarly, - * the selection command is blocked. + * surprises when the contents of the clipboard are pasted. We do + * not currently hide the selection command.. Should we? * - Cannot allow send because it can be used to cause unsafe * interpreters to execute commands. The tk command recreates the * send command, so that too must be hidden. |