https://bugs.winehq.org/show_bug.cgi?id=50624
Bug ID: 50624 Summary: Waves Central 12.0.5 fails to start: __call__ pywintypes.error: (1336, 'AddAccesAllowedAce', 'Invalid ACL.') Product: Wine Version: 6.1 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: xerox.xerox2000x@gmail.com Distribution: ---
Created attachment 69318 --> https://bugs.winehq.org/attachment.cgi?id=69318 hack
After installing it throws up a message : "Central has encountered a system permissions issue" Below part of the console output
File "pybatch\fileSystemBatchCommands.py", line 646, in __call__ pywintypes.error: (1336, 'AddAccesAllowedAce', 'Invalid ACL.') [1536] Failed to execute script instl
The attached hack makes the error go away and let`s me reach the login-screen. Maybe the hack is wrong, i don`t know how to test, but it looks like the error is coming from the code line
if (!RtlFirstFreeAce(pAcl, &pAceHeader) return STATUS_INVALID_ACL;
because when I change it to return STATUS_INVALID_PARAMATER it stops with:
File "pybatch\fileSystemBatchCommands.py", line 646, in __call__ pywintypes.error: (87, 'AddAccesAllowedAce', 'Invalid parameter.')
After changing it to STATUS_ALLOTTED_SPACE_EXCEEDED the issue is gone, and i get to the loginscreen
I don`t know how to test returncode, hopefully someone familiar with this piece of code can pick this up