Changeset 7859


Ignore:
Timestamp:
08/06/06 19:36:59 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7857 r7859  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
    20  2006/08/05
     20 2006/08/06 Thomas Bretz
     21
     22   * datacenter/macros/checkstardone.C,
     23     datacenter/macros/checkfileavail.C:
     24     - fixed. res was still not correctly deleted
     25
     26
     27
     28 2006/08/05 Thomas Bretz
    2129
    2230   * datacente/macros/fillsignal.C:
     
    3038   * datacenter/macros/checkstardone.C:
    3139     - fixed. was completely broken, didn't even compile.
     40
    3241
    3342
  • trunk/MagicSoft/Mars/datacenter/macros/checkfileavail.C

    r7777 r7859  
    7777    }
    7878
    79     TString rc = (*row)[0];
     79    TSQLRow *row = res->Next();
     80
     81    TString rc = row ? (*row)[0] : "";
    8082
    8183    delete res;
  • trunk/MagicSoft/Mars/datacenter/macros/checkstardone.C

    r7857 r7859  
    7575
    7676    TSQLRow *row = res->Next();
    77     if (!row)
    78        return "";
    7977
    80     TString rc = (*row)[0];
     78    TString rc = row ? (*row)[0] : "";
    8179
    8280    delete res;
Note: See TracChangeset for help on using the changeset viewer.