defea5ce53c69e33291c79fef25e9cbee73c4361
galt
  Mon Jul 1 13:53:12 2013 -0700
removing unneeded carefulCheckHeap calls since pushCarefulMemHandler was not being used and thus the check did absolutely nothing.
diff --git src/hg/pslReps/pslReps.c src/hg/pslReps/pslReps.c
index edc7ccd..9d76eac 100644
--- src/hg/pslReps/pslReps.c
+++ src/hg/pslReps/pslReps.c
@@ -298,36 +298,34 @@
 	    runVal = curVal;
 	    }
 	else
 	    {
 	    ++runSize;
 	    }
 	}
     fprintf(repFile, "%d\t", packetCount);
     for (i=0; i<packetCount; ++i)
 	fprintf(repFile, "%d,", packetSize[i]);
     fprintf(repFile, "\t");
     for (i=0; i<packetCount; ++i)
 	fprintf(repFile, "%d,", packetVal[i]);
     fprintf(repFile, "\n");
 
-    carefulCheckHeap();
     freeMem(packetSize);
     freeMem(packetVal);
     }
 
-carefulCheckHeap();
 freeMem(repTrack);
 freeMem(scoreTrack);
 }
 
 void processBestSingle(char *acc, struct psl *pslList, FILE *bestFile, FILE *repFile)
 /* Find single best psl in list. */
 {
 struct psl *bestPsl = NULL, *psl;
 int bestScore = 0, score, threshold;
 
 for (psl = pslList; psl != NULL; psl = psl->next)
     {
     score = pslScore(psl);
     if (score > bestScore)
         {