Derleme zamanı / statik analiz zamanı zamanında algılama için bazı önemsiz örnekler:
Aşağıdaki özelliklere sahip bir RHEL7 sunucusunda cppcheck 1.77 and 1.49
> cat test.cc
#include <memory>
int main(){char* buf = new char[10];delete buf;}
http://cppcheck.sourceforge.net/
> cppcheck -x c++ test.cc
Checking test.cc ...
[test.cc:2]: (error) Mismatching allocation and deallocation: buf
İle clang++ 3.7.1
RHEL7 üzerinde
> clang++ --analyze -x c++ test.cc
test.cc:2:37: warning: Memory allocated by 'new[]' should be deallocated by
'delete[]', not 'delete'
int main(){char* buf = new char[10];delete buf;}
^~~~~~~~~~
1 warning generated.
Clang Statik Analizörü ayrıca std::unique_ptr
geçilmediğini de tespit edebilir<char[]>
> cat test2.cc
#include <memory>
int main(){std::unique_ptr<char> buf(new char[10]);}
https://clang-analyzer.llvm.org/
> clang++ --analyze -x c++ -std=c++11 test2.cc
In file included from test2.cc:1:
In file included from /opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.3.1/
../../../../include/c++/5.3.1/memory:81:
/opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.3.1/
../../../../include/c++/5.3.1/bits/unique_ptr.h:76:2:
warning: Memory allocated by
'new[]' should be deallocated by 'delete[]', not 'delete'
delete __ptr;
^~~~~~~~~~~~
1 warning generated.
Aşağıda clang, testler ve bulduğum bir hata ekledi çalışma için bir bağlantı ile güncelleme.
Bu, clang'a reviews.llvm.org/D4661 - "'Yeni' ve 'sil' kullanımlarını yanlış eşleştirmeyi algıla" ile eklendi .
Testler test aşamasındadır / Analiz / EşleşmiyorDeallocator-checker-test.mm
Bu açık hatayı buldum - bugs.llvm.org/show_bug.cgi?id=24819