FACT++  1.0
int deleteCharItemList ( )

Definition at line 4139 of file feeserver.c.

References Memory::free().

Referenced by cleanUp().

4139  {
4140  CharItemNode* tmp = 0;
4141 
4142  while (firstCharNode != 0) {
4143  if (firstCharNode->charItem != 0) {
4144  if (firstCharNode->charItem->name != 0) {
4145  free(firstCharNode->charItem->name);
4146  }
4147  free(firstCharNode->charItem);
4148  }
4149 
4150  tmp = firstCharNode->next;
4152  firstCharNode = tmp;
4153  }
4154  return FEE_OK;
4155 }
void free(void *mem)
static CharItemNode * firstCharNode
Definition: feeserver.c:337

+ Here is the call graph for this function:

+ Here is the caller graph for this function: