Changeset 7859
- Timestamp:
- 08/06/06 19:36:59 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7857 r7859 18 18 19 19 -*-*- 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 21 29 22 30 * datacente/macros/fillsignal.C: … … 30 38 * datacenter/macros/checkstardone.C: 31 39 - fixed. was completely broken, didn't even compile. 40 32 41 33 42 -
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.