diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-09-14 20:35:58 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-09-14 20:35:58 (GMT) |
commit | d8142ec988da069be185faa5b25c0cf258a7e452 (patch) | |
tree | af1e2d8738f97514fb3f07466e9b32fdf9fbe051 /generic/tkImgGIF.c | |
parent | ffdcd15f54e2b66fc95e9939934e9141674e3bad (diff) | |
download | tk-d8142ec988da069be185faa5b25c0cf258a7e452.zip tk-d8142ec988da069be185faa5b25c0cf258a7e452.tar.gz tk-d8142ec988da069be185faa5b25c0cf258a7e452.tar.bz2 |
* generic/tkImgGIF.c:
* generic/tkImgPPM.c:
* generic/tkImgPhoto.c:
* generic/tkMenu.c: Applied patch [461578], provided by Vincent
Darley. This fixes several memory leaks in the image code. They
happen if there are errors during the initialization of the
channel the image is supposed to be read from.
Diffstat (limited to 'generic/tkImgGIF.c')
-rw-r--r-- | generic/tkImgGIF.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkImgGIF.c b/generic/tkImgGIF.c index 54c857e..108c7ad 100644 --- a/generic/tkImgGIF.c +++ b/generic/tkImgGIF.c @@ -29,7 +29,7 @@ * | provided "as is" without express or implied warranty. | * +-------------------------------------------------------------------+ * - * RCS: @(#) $Id: tkImgGIF.c,v 1.17 2001/07/03 06:00:45 hobbs Exp $ + * RCS: @(#) $Id: tkImgGIF.c,v 1.18 2001/09/14 20:35:58 andreas_kupries Exp $ */ /* @@ -1354,6 +1354,7 @@ FileWriteGIF (interp, filename, format, blockPtr) return TCL_ERROR; } if (Tcl_SetChannelOption(interp, chan, "-translation", "binary") != TCL_OK) { + Tcl_Close(NULL, chan); return TCL_ERROR; } |