Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
309 - Potential NULL argument <number> to <function>.
This message indicates that the code is passing an unexpected NULL parameter as an argument to the specified API.
Example
Defective Source
strcpy(NULL,"data");
Corrected Source
char szDest[20];
strcpy(szDest,"data");
Send Feedback on this topic to the authors