We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vFile:open
1 parent db06c4a commit 67e77f1Copy full SHA for 67e77f1
Sources/GDBRemote/Session.cpp
@@ -273,6 +273,9 @@ OpenFlags Session::ConvertOpenFlags(uint32_t protocolFlags) {
273
return kOpenFlagInvalid; // Invalid mode
274
}
275
276
+ if (protocolFlags & 0x8)
277
+ flags |= kOpenFlagAppend;
278
+
279
flags = flags
280
| (protocolFlags & 0x200 ? kOpenFlagCreate : 0) // eOpenOptionCanCreate (O_CREAT)
281
| (protocolFlags & 0x400 ? kOpenFlagTruncate : 0) // eOpenOptionTruncate (O_TRUNC)
0 commit comments