Keith Newton

Results 34 comments of Keith Newton

Also FUSE hasn't been tested at all.

Compiling FUSE under certain circumstances seems to have failed because the Windows thread pool headers couldn't be located. I don't see any unit tests listed anywhere in the appveyor -...

Ah ok, cool, thanks! I'll take a look on Monday.

Ok nearly all of the unit tests are passing. In WinFSTest I get a couple of failures for the regular Windows filesystem however it looks with Mirror I have 2...

So I am in the middle of Windows security hell. SetFileSecurity keeps failing with ERROR_INVALID_OWNER and I'm not entirely sure why. Documentation for Windows security kind of sucks and I've...

Also the extra weird thing is my code for SetFileSecurity works just fine with my own unit tests. It only fails in the python winfstest unit tests. I'm wondering if...

For reference to myself as much as anybody else one thing I haven't tried yet is `Get/SetKernelObjectSecurity()`. Documentation is available here: https://msdn.microsoft.com/en-us/library/windows/desktop/aa364399(v=vs.85).aspx

Nevermind you're supposed to use `SetSecurityInfo or SetNamedSecurityInfo` instead of `SetKernelObjectSecurity()` which is what I've been using =(.

Alright I've done my final commit until you guys have a chance to do a review. Some of the unit tests concerning `SetFileSecurity` are still failing and I have no...

It looks like there's some sort of race condition that FSX exposes. My own local runs of FSX always succeed but I've been running debug versions so maybe I need...