1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00

- close manually the impersonation token

This commit is contained in:
Pierre Joye
2009-05-18 20:56:46 +00:00
parent e5348b9152
commit aedaf1aea9
+4
View File
@@ -68,6 +68,10 @@ static void tsrm_win32_dtor(tsrm_win32_globals *globals TSRMLS_DC)
}
free(globals->comspec);
If(globals->impersonation_token) {
CloseHandle(globals->impersonation_token);
}
}
TSRM_API void tsrm_win32_startup(void)