Index: /trunk/psLib/src/db/psDB.c
===================================================================
--- /trunk/psLib/src/db/psDB.c	(revision 7660)
+++ /trunk/psLib/src/db/psDB.c	(revision 7661)
@@ -12,6 +12,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.66 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-06-23 22:53:56 $
+ *  @version $Revision: 1.67 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-06-24 00:18:48 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -181,5 +181,8 @@
 void psDBCleanup(psDB *dbh)
 {
-    PS_ASSERT_PTR_NON_NULL(dbh, );
+    // quietly handle NULLs
+    if (!dbh) {
+        return;
+    }
 
     // Attempt to close specified database connection
