summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-02-17 20:39:52 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-02-17 20:39:52 (GMT)
commit4549e3fbc8a24a6ba2228d48dcea4dba5e49c506 (patch)
treebbbd7cb122e3924806ff1610ca445ac8836a178e
parent5d636d378ae1dccd1dd760f5e49a7173c554045d (diff)
downloadtk-4549e3fbc8a24a6ba2228d48dcea4dba5e49c506.zip
tk-4549e3fbc8a24a6ba2228d48dcea4dba5e49c506.tar.gz
tk-4549e3fbc8a24a6ba2228d48dcea4dba5e49c506.tar.bz2
* tests/imgPhoto.test (imgPhoto-16.1): Corrected incorrect
variable name [Bug 899010].
-rw-r--r--ChangeLog5
-rw-r--r--tests/imgPhoto.test4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d912e73..14acc21 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-17 Don Porter <dgp@users.sourceforge.net>
+
+ * tests/imgPhoto.test (imgPhoto-16.1): Corrected incorrect
+ variable name [Bug 899010].
+
2004-02-15 Jim Ingham <jingham@apple.com>
* tkMacOSXDialog.c (MatchOneType): If the Macintosh filetype
diff --git a/tests/imgPhoto.test b/tests/imgPhoto.test
index fe8228d..9374b0f 100644
--- a/tests/imgPhoto.test
+++ b/tests/imgPhoto.test
@@ -9,7 +9,7 @@
#
# Author: Paul Mackerras (paulus@cs.anu.edu.au)
#
-# RCS: @(#) $Id: imgPhoto.test,v 1.17 2004/02/09 14:48:20 dkf Exp $
+# RCS: @(#) $Id: imgPhoto.test,v 1.18 2004/02/17 20:39:52 dgp Exp $
package require tcltest 2.1
eval tcltest::configure $argv
@@ -657,7 +657,7 @@ test imgPhoto-15.1 {photo images can fail to allocate memory gracefully} \
test imgPhoto-16.1 {copying to self doesn't access freed memory} {
# Bug 877950 makes this crash when trying to copy out of a deallocated area
- set photo [image create photo]
+ set i [image create photo]
$i put red -to 0 0 1000 1000
$i copy $i -from 0 0 1000 1000 -to 500 0
image delete $i