PREfast Warning 309 (Windows CE 5.0)
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