[Bug 9353] CreateFile with OPEN_ALWAYS on an existing directory fails with ERROR_ACCESS_DENIED

wine-bugs at winehq.org wine-bugs at winehq.org
Tue Dec 2 22:57:42 CST 2008


http://bugs.winehq.org/show_bug.cgi?id=9353





--- Comment #17 from Dmitry Timoshkov <dmitry at codeweavers.com>  2008-12-02 22:57:42 ---
Probably

(flags & (~O_TRUNC & ~O_CREAT))

should be replaced by

(flags & (~(O_TRUNC | O_CREAT)))

to make the intent more clear.


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list