summaryrefslogtreecommitdiffstats
path: root/tksao/frame/fitscompress.C
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-10-04 17:07:35 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-10-04 17:07:35 (GMT)
commit3802d3df703ae75262c86187cad4d3bae745a9ca (patch)
tree8c77eac67f2decca132e559e51038024a98ed5a9 /tksao/frame/fitscompress.C
parenta18d63abab08e41fe439e13da46e1e686933e9c0 (diff)
downloadblt-3802d3df703ae75262c86187cad4d3bae745a9ca.zip
blt-3802d3df703ae75262c86187cad4d3bae745a9ca.tar.gz
blt-3802d3df703ae75262c86187cad4d3bae745a9ca.tar.bz2
track down memory leaks with getString
Diffstat (limited to 'tksao/frame/fitscompress.C')
-rw-r--r--tksao/frame/fitscompress.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/tksao/frame/fitscompress.C b/tksao/frame/fitscompress.C
index d04c32f..e472490 100644
--- a/tksao/frame/fitscompress.C
+++ b/tksao/frame/fitscompress.C
@@ -12,7 +12,7 @@
void FitsImage::initCompress()
{
int bitpix = fits_->getInteger("ZBITPIX",0);
- char* type = fits_->getString("ZCMPTYPE");
+ char* type = fits_->getStringCopy("ZCMPTYPE");
if (!bitpix || !type) {
if (type)
delete [] type;