NPE race condition alert - see JAL-661
authorjprocter <Jim Procter>
Thu, 23 Sep 2010 08:31:10 +0000 (08:31 +0000)
committerjprocter <Jim Procter>
Thu, 23 Sep 2010 08:31:10 +0000 (08:31 +0000)
src/jalview/analysis/AAFrequency.java

index 4bff6ef..31cb7ad 100755 (executable)
@@ -105,6 +105,11 @@ public class AAFrequency
 
       for (j = 0; j < jSize; j++)
       {
+        if (sequences[j]==null)
+        {
+          System.err.println("WARNING: Consensus skipping null sequence - possible race condition.");
+          continue;
+        }
         seq = sequences[j].getSequence();
         if (seq.length > i)
         {