[Bug 19581] Visual Studio 2005: "cl : Command line error D8022 : cannot open 'foo.rsp' "; foo.rsp was created with FILE_ATTRIBUTE_TEMPORARY

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Aug 5 00:29:50 CDT 2009


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





--- Comment #2 from Dan Kegel <dank at kegel.com>  2009-08-05 00:29:49 ---
I tried putting this in CreateFileW,
as suggested long ago by
http://www.winehq.org/pipermail/wine-patches/2004-February/009620.html
but it didn't seem to help:

+    if (attributes & FILE_ATTRIBUTE_TEMPORARY) {
+        TRACE("Clearing FILE_ATTRIBUTE_TEMPORARY\n");
+        attributes &= ~FILE_ATTRIBUTE_TEMPORARY;
+        if (!(attributes & FILE_ATTRIBUTE_NORMAL)) {
+            TRACE("Setting FILE_ATTRIBUTE_NORMAL\n");
+            attributes |= FILE_ATTRIBUTE_NORMAL;
+        }
+    }
+

-- 
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