You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

CWE 234 Missing Parameter "If too few arguments are sent to a function, the function will still pop the expected number of arguments from the stack. Potentially, a variable number of arguments could be exhausted in a function as well." -http://cwe.mitre.org/

solution: "Implementation: Forward declare all functions. This is the recommended solution. Properly forward declaration of all used functions will result in a compiler error if too few arguments are sent to a function." -http://cwe.mitre.org/

  • No labels