C00B0441

Explanation

The filename and mode arguments passed to fopen() or freopen() specified a memory file. The mode argument specifies write, append, or update. It was found that the memory file is already open. You cannot open a memory file for write if it is already open.

Programmer response

Correct the application.

Symbolic Feedback Code

JrEdc1opsEisopen01