Description
CWE: 762 Mismatched Memory Management Routines
BadSource: realloc Allocate data using realloc()
GoodSource: Allocate data using new []
Sinks:
GoodSink: Deallocate data using free()
BadSink : Deallocate data using delete []
Flow Variant: 64 Data flow: void pointer to data passed from one function to another in different source files
Flaws
Test Suites
Documentation
Have any comments on this test case? Please, send us an email.