svn rev #25499: trunk/src/lib/krb5/ccache/
hartmans@MIT.EDU
hartmans at MIT.EDU
Fri Dec 2 14:20:54 EST 2011
http://src.mit.edu/fisheye/changelog/krb5/?cs=25499
Commit By: hartmans
Log Message:
ticket: 7037
subject: Use LsaDeregisterLogonProcess(), not CloseHandle()
target_version: 1.10
tags: pullup
Signed-off-by: Kevin Wasserman <kevin.wasserman at painless-security.com>
Changed Files:
U trunk/src/lib/krb5/ccache/cc_mslsa.c
Modified: trunk/src/lib/krb5/ccache/cc_mslsa.c
===================================================================
--- trunk/src/lib/krb5/ccache/cc_mslsa.c 2011-12-02 18:52:22 UTC (rev 25498)
+++ trunk/src/lib/krb5/ccache/cc_mslsa.c 2011-12-02 19:20:54 UTC (rev 25499)
@@ -668,7 +668,7 @@
pTicketRequest = (PKERB_RETRIEVE_TKT_REQUEST) LocalAlloc(LMEM_ZEROINIT, RequestSize);
if (!pTicketRequest) {
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return FALSE;
}
@@ -693,7 +693,7 @@
);
LocalFree(pTicketRequest);
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
if (FAILED(Status) || FAILED(SubStatus)) {
if ( SubStatus == STATUS_NOT_SUPPORTED )
@@ -733,7 +733,7 @@
pCacheRequest = (PKERB_QUERY_TKT_CACHE_REQUEST) LocalAlloc(LMEM_ZEROINIT, RequestSize);
if (!pCacheRequest) {
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return FALSE;
}
@@ -751,7 +751,7 @@
);
LocalFree(pCacheRequest);
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
if (!(FAILED(Status) || FAILED(SubStatus))) {
LsaFreeReturnBuffer(pCacheResponse);
@@ -2048,7 +2048,7 @@
lid = (krb5_ccache) malloc(sizeof(struct _krb5_ccache));
if (lid == NULL) {
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return KRB5_CC_NOMEM;
}
@@ -2057,7 +2057,7 @@
lid->data = (krb5_pointer) malloc(sizeof(krb5_lcc_data));
if (lid->data == NULL) {
free(lid);
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return KRB5_CC_NOMEM;
}
@@ -2071,7 +2071,7 @@
if (data->cc_name == NULL) {
free(lid->data);
free(lid);
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return KRB5_CC_NOMEM;
}
strcpy(data->cc_name, residual);
@@ -2093,7 +2093,7 @@
free(data->cc_name);
free(lid->data);
free(lid);
- CloseHandle(LogonHandle);
+ LsaDeregisterLogonProcess(LogonHandle);
return KRB5_FCC_NOFILE;
}
@@ -2168,7 +2168,7 @@
data = (krb5_lcc_data *) id->data;
if (data) {
- CloseHandle(data->LogonHandle);
+ LsaDeregisterLogonProcess(data->LogonHandle);
free(data);
}
free(id);
More information about the cvs-krb5
mailing list