Displaying test cases 7201 - 7225 of 25795 in total
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: malloc Allocate data using malloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 62 Data flow: data flows using a C++ reference from one fun...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: malloc Allocate data using malloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 43 Data flow: data flows using a C++ reference from one fun...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: malloc Allocate data using malloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 33 Data flow: use of a C++ reference to data within the sam...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 84 Data flow: data passed to class constructor and destruct...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 83 Data flow: data passed to class constructor and destruct...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 82 Data flow: data passed in a parameter to an virtual meth...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 81 Data flow: data passed in a parameter to an virtual meth...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 74 Data flow: data passed in a map from one function to ano...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 73 Data flow: data passed in a list from one function to an...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 72 Data flow: data passed in a vector from one function to ...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 62 Data flow: data flows using a C++ reference from one fun...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 43 Data flow: data flows using a C++ reference from one fun...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: calloc Allocate data using calloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 33 Data flow: use of a C++ reference to data within the sam...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 84 Data flow: data passed to class constructor and destructor by declaring the class object on the heap and deleti...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 83 Data flow: data passed to class constructor and destructor by declaring the class object on the stack
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 82 Data flow: data passed in a parameter to an virtual method called via a pointer
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 81 Data flow: data passed in a parameter to an virtual method called via a reference
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 74 Data flow: data passed in a map from one function to another in different source files
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 73 Data flow: data passed in a list from one function to another in different source files
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 72 Data flow: data passed in a vector from one function to another in different source files
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 62 Data flow: data flows using a C++ reference from one function to another in different source files
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 43 Data flow: data flows using a C++ reference from one function to another in the same source file
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: fopen Open data with fopen() Sinks: 0 GoodSink: Check data for NULL BadSink : Do not check data for NULL Flow Variant: 33 Data flow: use of a C++ reference to data within the same function
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: realloc Allocate data using realloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 84 Data flow: data passed to class constructor and destru...
-
CWE: 690 Unchecked Return Value To NULL Pointer BadSource: realloc Allocate data using realloc() Sinks: GoodSink: Check to see if the data allocation failed and if not, use data BadSink : Dont check for NULL and use data Flow Variant: 83 Data flow: data passed to class constructor and destru...