Try to resolve unexpected compiler errors

This commit is contained in:
counterpoint 2015-08-25 09:23:24 +01:00
parent 12922225b8
commit f18f233de2

View File

@ -462,12 +462,18 @@ DCB *dcb = NULL;
* queue or NULL if the DCB is at the head of the
* queue. Remove zombiedcb from the zombies list.
*/
if (previousdcb == NULL)
if (NULL == previousdcb)
{
zombies = zombiedcb->memdata.next;
else
}
else
{
previousdcb->memdata.next = zombiedcb->memdata.next;
}
LOGIF(LD, (skygw_log_write_flush(
if (LOG_IS_ENABLED(LD))
{
(skygw_log_write_flush(
LOGFILE_DEBUG,
"%lu [%s] Remove dcb "
"%p fd %d in state %s from the "
@ -476,7 +482,8 @@ DCB *dcb = NULL;
__func__,
zombiedcb,
zombiedcb->fd,
STRDCBSTATE(zombiedcb->state))));
STRDCBSTATE(zombiedcb->state)));
}
/*<
* Move zombie dcb to linked list of victim dcbs.
* The variable dcb is used to hold the last DCB