Definition at line 3514 of file feeserver.c.
References createIntItem(), Memory::free(), and Memory::malloc().
3515 IntItem* intItem = 0;
3521 printf(
"no memory available!\n");
3525 intItem->location = intLocation;
3526 intItem->name = (
char*)
malloc(strlen(itemName) + 1);
3527 if (intItem->name == 0) {
3530 printf(
"no memory available!\n");
3535 strcpy(intItem->name, itemName);
3536 intItem->defaultDeadband = defDeadband;
IntItem * createIntItem()