Changeset 2087 in Sophya for trunk/SophyaExt/FitsIOServer


Ignore:
Timestamp:
Jul 10, 2002, 9:46:39 PM (23 years ago)
Author:
cmv
Message:

modifs mineures cmv 10/7/02

Location:
trunk/SophyaExt/FitsIOServer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fabtcolread.cc

    r1814 r2087  
    248248{
    249249 if(keyname==NULL) return 0.;
    250  int sta=0; double val;
     250 int sta=0; double val=0.;
    251251 if(fits_read_key(FitsPtr,TDOUBLE,keyname,&val,NULL,&sta))
    252252   printerror(sta);
  • trunk/SophyaExt/FitsIOServer/fboloread.cc

    r1661 r2087  
    127127
    128128 if(col>=0) {  // Already filled column
    129    if(mFABT[col]!=NULL) delete mFABT[col];
     129   if(mFABT[col]!=NULL) {delete mFABT[col]; mFABT[col]=NULL;}
    130130 } else {      // Prepare for new column
    131131   col=mFABT.size();
     
    214214     throw NullPtrError("FitsBoloRead::SetNbLine: column not connected\n");
    215215   NBline = mFABT[col]->GetNbLine();
     216   return;
    216217 }
    217218
Note: See TracChangeset for help on using the changeset viewer.