Ignore:
Timestamp:
Mar 12, 2008, 9:08:18 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.28a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/auth/auth_ntlmssp.c

    r1 r124  
    188188void auth_ntlmssp_end(AUTH_NTLMSSP_STATE **auth_ntlmssp_state)
    189189{
    190         TALLOC_CTX *mem_ctx = (*auth_ntlmssp_state)->mem_ctx;
     190        TALLOC_CTX *mem_ctx;
     191
     192        if (*auth_ntlmssp_state == NULL) {
     193                return;
     194        }
     195
     196        mem_ctx = (*auth_ntlmssp_state)->mem_ctx;
    191197
    192198        if ((*auth_ntlmssp_state)->ntlmssp_state) {
Note: See TracChangeset for help on using the changeset viewer.