다음을 통해 공유


PREfast Warning 309 (Windows CE 5.0)

Send Feedback

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

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.