com php-src: use char* as we don't compile with UNICODE anyway: TSRM/tsrm_win32.c
[email protected] (Anatol Belski)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: f708f0bb72b182ae371156435c4a00586dca06d7 Author: Anatol Belski <[email protected]> Fri, 28 Apr 2017 14:03:06 +0200 Parents: e9d5214b85004b0965246fb7ac9ae1f0c08f5a2c Branches: master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=f708f0bb72b182ae371156435c4a00586dca06d7 Log: use char* as we don't compile with UNICODE anyway Changed paths: M TSRM/tsrm_win32.c Diff: diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index bb277b4..b9a4ec9 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -110,7 +110,7 @@ TSRM_API void tsrm_win32_shutdown(void) char * tsrm_win32_get_path_sid_key(const char *pathname, size_t pathname_len, size_t *key_len) { PSID pSid = TWG(impersonation_token_sid); - TCHAR *ptcSid = NULL; + char *ptcSid = NULL; char *bucket_key = NULL; size_t ptc_sid_len;