Commit 34ba0c42 by Szeberényi Imre

statikus aanalizis példa

parent 0f75a8fe
// file: errors.cpp
#include <iostream>
const int L = 30;
char* fn1(int a, int) {
char *p = new char[L];
#ifdef ALADAR
p[L] = 1;
delete p;
#else
delete[] p;
#endif
return p;
}
int main() {
std::cout << *fn1(30, 4) << std::endl;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment