Changeset 7859 for trunk/MagicSoft/Mars/datacenter/macros
- Timestamp:
- 08/06/06 19:36:59 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/macros/checkfileavail.C
r7777 r7859 77 77 } 78 78 79 TString rc = (*row)[0]; 79 TSQLRow *row = res->Next(); 80 81 TString rc = row ? (*row)[0] : ""; 80 82 81 83 delete res; -
trunk/MagicSoft/Mars/datacenter/macros/checkstardone.C
r7857 r7859 75 75 76 76 TSQLRow *row = res->Next(); 77 if (!row)78 return "";79 77 80 TString rc = (*row)[0];78 TString rc = row ? (*row)[0] : ""; 81 79 82 80 delete res;
Note:
See TracChangeset
for help on using the changeset viewer.