We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are some cases that open() is called with wrong arguments.
open()
Here are some examples that I managed to find:
In NSH, here a file is opened without oflags (e.g. O_RDWR).
O_RDWR
In file testing/ostest/aio.c several calls are made to open() with the flag O_CREAT, but no mode is passed. Example here.
O_CREAT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are some cases that
open()
is called with wrong arguments.Here are some examples that I managed to find:
In NSH, here a file is opened without oflags (e.g.
O_RDWR
).In file testing/ostest/aio.c several calls are made to
open()
with the flagO_CREAT
, but no mode is passed. Example here.The text was updated successfully, but these errors were encountered: