Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7856)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7857)
@@ -22,4 +22,5 @@
    * datacente/macros/fillsignal.C:
      - still searched for tabs DiffHi and DiffLo... fixed.
+     - added a missing comma in the sql query
 
    * mbase/MLog.cc, mbase/MLogHtml.cc:
@@ -27,4 +28,6 @@
      - fixed length argument for the case </> are replaced by html-code
 
+   * datacenter/macros/checkstardone.C:
+     - fixed. was completely broken, didn't even compile.
 
 
Index: trunk/MagicSoft/Mars/datacenter/macros/checkstardone.C
===================================================================
--- trunk/MagicSoft/Mars/datacenter/macros/checkstardone.C	(revision 7856)
+++ trunk/MagicSoft/Mars/datacenter/macros/checkstardone.C	(revision 7857)
@@ -74,5 +74,9 @@
     }
 
-    TString rc = (*res)[0];
+    TSQLRow *row = res->Next();
+    if (!row)
+       return "";
+
+    TString rc = (*row)[0];
 
     delete res;
