"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 } }"""
Log in to post a comment.
"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
} }"""