morganwang - 2015-05-19

"while((p=fun())!=NULL)
{
if(condition)
{
if(p){
delete p;
p=NULL;//bad point dereference reports here
}
continue;
}
strlen(p);//bad point dereference reports here
} }"""