]> code.citadel.org Git - citadel.git/blobdiff - citadel/context.c
Close sockets properly at logout
[citadel.git] / citadel / context.c
index c6575d3dba1e0194be7b21e6045a355be98823fc..a04198db2529c148f160096d8895e398550164fa 100644 (file)
@@ -352,13 +352,11 @@ void RemoveContext (CitContext *con)
        become_session(con);
        CtdlUserLogout();
        PerformSessionHooks(EVT_STOP);
+       client_close();                         /* If the client is still connected, blow 'em away. */
        become_session(NULL);
 
        syslog(LOG_NOTICE, "[%3d] Session ended.\n", con->cs_pid);
 
-       /* If the client is still connected, blow 'em away. */
-       client_close();
-
        /* If using AUTHMODE_LDAP, free the DN */
        if (con->ldap_dn) {
                free(con->ldap_dn);