Abramo Begnara reported a crash in MallocChecker.cpp
https://www.mail-archive.com/cfe-commits@lists.llvm.org/msg43052.html
For expressions like:
void f(int a, int b)
{
new char[a * b];
}
or
new unsigned[m + n + 1];
This patch includes the fix and the test case.