From: "Mark Gaulin" 
To: 
Subject: RE: CFX_ImageInfo Error?
Date: Monday, November 29, 1999 7:31 PM
There is a pretty serious memory leak in the current version of
CFX_ImageInfo. Memory usage on cfserver.exe goes up and up with each call to
the tag. (The amount of memory leaked depends on the size of the jpeg file
you read.) Maybe this is giving you trouble.  On the other hand, maybe your
image file is funky.
Anyway, here's the fix: Thankfully the author's web site includes source
(http://www.intrafoundation.com/freeware.html) and we were able to find the
missing "free" call. It belongs in jpg.h, around line 113.
int process_default(unsigned int length)
{
	int count;
	buffer=(unsigned char *)malloc(length);
	count=read_data(buffer,length-2);
	free(buffer);	// this was missing
	return count;
}
I sent a bug fix to the author a while back but a fixed version does not
appear to be on developer's exchange or on their web site.
-----Original Message-----
From: Avi Flax [mailto:avi@wordsinprogress.com]
Sent: Monday, November 29, 1999 5:30 PM
To: cf-talk@houseoffusion.com
Subject: CFX_ImageInfo Error?
Anyone know what could cause this? Memory problems?
Error occurred in tag CFX_IMAGEINFO
Unexpected error occurred while processing tag.
Thanks!
Avi
-----
Avi Flax
Web Applications Developer
Words In Progress, Inc.
avi@wordsinprogress.com
http://www.wordsinprogress.com