65d4e104c27bba7f7bccb611eab58286c8c6ab66
kent
  Thu Sep 6 15:28:27 2012 -0700
Adding a flag to prevent init from happening twice in dnaUtilOpen.
diff --git src/lib/dnautil.c src/lib/dnautil.c
index fcd8619..61ac692 100644
--- src/lib/dnautil.c
+++ src/lib/dnautil.c
@@ -1110,16 +1110,15 @@
 void dnaUtilOpen()
 /* Initialize stuff herein. */
 {
 static boolean opened = FALSE;
 if (!opened)
     {
     checkSizeTypes();
     initNtVal();
     initAaVal();
     initNtChars();
     initNtMixedCaseChars();
     initNtCompTable();
     opened = TRUE;
     }
 }
-