Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the external string_m.h file, the string_mx type is defined to be an instance of struct string_mx, which in turn is declared as an incomplete type:

Code Block
bgColor#ccccff
langc
struct string_mx;
typedef struct string_mx string_mx;

/* Function declarations */
extern errno_t strcpy_m(string_mx *s1, const string_mx *s2);
extern errno_t strcat_m(string_mx *s1, const string_mx *s2);
/* ... */

...

Related Vulnerabilities

Search for vulnerabilities resulting from the violation of this rule on the CERT website.

...