incorrect-level-of-indirection-20040713
authorJeffrey Altman <jaltman@mit.edu>
Wed, 14 Jul 2004 07:34:09 +0000 (07:34 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Wed, 14 Jul 2004 07:34:09 +0000 (07:34 +0000)
When freeing a server_t, do not indirect to GC the connections

src/WINNT/afsd/cm_server.c

index be349d4..248050f 100644 (file)
@@ -399,7 +399,7 @@ void cm_FreeServer(cm_server_t* server)
          * for this server have a 0 refCount; otherwise, they will
          * not be garbage collected 
          */
-        cm_GCConnections(&server);  /* connsp */
+        cm_GCConnections(server);  /* connsp */
 
         lock_FinalizeMutex(&server->mx);
         if ( cm_allServersp == server )