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.
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