You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include <utility>
|
|
#include <tuple> // for std::get
|
|
|
|
namespace pair {
|
|
|
|
std::pair<int, int*> pairOfZeroNull() {
|
|
return std::pair<int, int*>(0, nullptr);
|
|
}
|
|
|
|
std::pair<int, int*> pairOfZeroNull2() { return std::make_pair(0, nullptr); }
|
|
|
|
// there are reported as DANGLING_POINTER_DEREFERENCE
|
|
// but should really be NULL_DEREFERENCE
|
|
int deref_pair_null0_bad_FN() {
|
|
auto p = pairOfZeroNull();
|
|
// Should report an NPE here as p.second is NULL
|
|
return p.first + *p.second;
|
|
}
|
|
|
|
int deref_pair_null1_bad() {
|
|
auto p = pairOfZeroNull();
|
|
// Should report an NPE here as p.second is NULL
|
|
return std::get<0>(p) + *std::get<1>(p);
|
|
}
|
|
|
|
int deref_pair_null3_bad_FN() {
|
|
auto p = pairOfZeroNull2();
|
|
// Should report an NPE here as p.second is NULL
|
|
return p.first + *p.second;
|
|
}
|
|
|
|
int deref_pair_null_guard_ok_FP() {
|
|
auto p = pairOfZeroNull();
|
|
if (p.second != nullptr) {
|
|
// Should not report an NPE here as p.second is guarded
|
|
return p.first + *p.second;
|
|
}
|
|
return 0;
|
|
}
|
|
} // namespace pair
|