diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-10-04 17:07:35 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-10-04 17:07:35 (GMT) |
commit | 3802d3df703ae75262c86187cad4d3bae745a9ca (patch) | |
tree | 8c77eac67f2decca132e559e51038024a98ed5a9 /tksao/frame/fitscompress.C | |
parent | a18d63abab08e41fe439e13da46e1e686933e9c0 (diff) | |
download | blt-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.C | 2 |
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; |