Added log error or ss_dassert instead of silent returning

This commit is contained in:
Massimiliano Pinto
2013-09-04 15:31:04 +02:00
parent 5c48239372
commit b01cf2365e
4 changed files with 30 additions and 13 deletions

View File

@ -523,8 +523,9 @@ clientReply(
DCB *client = NULL;
client = backend_dcb->session->client;
if (client) {
client->func.write(client, queue);
}
ss_dassert(client != NULL);
client->func.write(client, queue);
}
///