FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
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;
4151
free
(
firstCharNode
);
4152
firstCharNode
= tmp;
4153
}
4154
return
FEE_OK;
4155
}
Memory::free
void free(void *mem)
Definition:
EventBuilder.cc:126
firstCharNode
static CharItemNode * firstCharNode
Definition:
feeserver.c:337
Here is the call graph for this function:
Here is the caller graph for this function:
dim
src
feeserver.c
Generated on Sun Sep 18 2016 20:50:31 for FACT++ by
1.8.11