diff options
author | jingham <jingham> | 1998-11-10 06:49:19 (GMT) |
---|---|---|
committer | jingham <jingham> | 1998-11-10 06:49:19 (GMT) |
commit | 0b7d54658da48c639f446247709d0f7677c52ba2 (patch) | |
tree | 426ae9ad4e25e36702e7b3c1ea424748f2fde331 /mac/tclMacTest.c | |
parent | 1507799b72b322cf875f0e6a287dfe69bf420a8a (diff) | |
download | tcl-0b7d54658da48c639f446247709d0f7677c52ba2.zip tcl-0b7d54658da48c639f446247709d0f7677c52ba2.tar.gz tcl-0b7d54658da48c639f446247709d0f7677c52ba2.tar.bz2 |
Fixed a bug in the resource command when the file was opened twice.
Fixed a bug in the testWriteTextResource command - it wrote one too many bytes.
Factored out the common code from the .pch files
FspLocationFromPath - make path a CONST
Diffstat (limited to 'mac/tclMacTest.c')
-rw-r--r-- | mac/tclMacTest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mac/tclMacTest.c b/mac/tclMacTest.c index 3824031..3c982c5 100644 --- a/mac/tclMacTest.c +++ b/mac/tclMacTest.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacTest.c,v 1.2 1998/09/14 18:40:07 stanton Exp $ + * RCS: @(#) $Id: tclMacTest.c,v 1.3 1998/11/10 06:49:51 jingham Exp $ */ #define TCL_TEST @@ -188,11 +188,11 @@ WriteTextResource( strcpy((char *) resourceName, rsrcName); c2pstr((char *) resourceName); - dataHandle = NewHandle(strlen(data) + 1); + dataHandle = NewHandle(strlen(data)); HLock(dataHandle); strcpy(*dataHandle, data); HUnlock(dataHandle); - + /* * Add the resource to the file and close it. */ |