다음을 통해 공유


PREfast Warning 324 (Windows CE 5.0)

Send Feedback

324 - Potential incorrect use of strcpy.
Question: Did you intend to use strcmp?

This message indicates that strcpy was used where strcmp should have been used.

Example

Defective Source

(strcpy (name, "dipa") == 0)

Corrected Source

(strcmp (name, "dipa") == 0)

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.