Differences From Artifact [0bcf348591]:
- File src/winfile.c — part of check-in [969f0a2611] at 2014-04-29 11:48:12 on branch trunk — Possible fix for [56bafbab54]: unable to use network drive. Theory is that the AccessCheck() call failes because there are more than one Privileges in use. See: [http://msdn.microsoft.com/en-us/library/windows/desktop/aa374815%28v=vs.85%29.aspx] (user: jan.nijtmans size: 7899) [more...]
To Artifact [e0e1ffdb66]:
- File src/winfile.c — part of check-in [9867a3ec7c] at 2015-09-04 11:42:24 on branch trunk — A few general symlink handling fixes, cherrypicked from "winsymlink" branch (user: jan.nijtmans size: 7908) [more...]
| ︙ | ︙ | |||
238 239 240 241 242 243 244 |
&privSetSize, &grantedAccess, &accessYesNo) ){
/*
* Unable to perform access check.
*/
rc = -1; goto done;
}
| | > > | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
&privSetSize, &grantedAccess, &accessYesNo) ){
/*
* Unable to perform access check.
*/
rc = -1; goto done;
}
if( !accessYesNo ){
rc = -1;
}
done:
if( hToken != NULL ){
CloseHandle(hToken);
}
if( impersonated ){
|
| ︙ | ︙ |