Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cppcheck #63

Closed
pavel-pimenov opened this issue Dec 12, 2012 · 1 comment
Closed

cppcheck #63

pavel-pimenov opened this issue Dec 12, 2012 · 1 comment

Comments

@pavel-pimenov
Copy link
Contributor

http://sourceforge.net/projects/cppcheck/?source=dlp

"Possible null pointer dereference: conn - otherwise it is redundant to check it against null."

static void *call_user(struct mg_connection *conn, enum mg_event event) {
if (conn != NULL && conn->ctx != NULL) {
conn->request_info.user_data = conn->ctx->user_data;
}
return conn == NULL || conn->ctx == NULL || conn->ctx->user_callback == NULL ?
NULL : conn->ctx->user_callback(event, conn);
}
mongoose-cppcheck

@cpq
Copy link
Member

cpq commented Dec 25, 2012

I can't see anything wrong with my code.
Do you have a clue what is wrong?

@cpq cpq closed this as completed Dec 25, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants