Change LLDstringDelete to LLDdeleteString
This commit is contained in:
@ -1035,7 +1035,7 @@ static void printList(SConnection * pCon, int listID)
|
|||||||
static void freeList(int listID)
|
static void freeList(int listID)
|
||||||
{
|
{
|
||||||
do {
|
do {
|
||||||
LLDstringDelete(listID);
|
LLDdeleteString(listID);
|
||||||
} while (0 != LLDnodePtr2First(listID));
|
} while (0 != LLDnodePtr2First(listID));
|
||||||
LLDdelete(listID);
|
LLDdelete(listID);
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
|
|
||||||
#define LLDstringCreate() LLDblobCreate()
|
#define LLDstringCreate() LLDblobCreate()
|
||||||
|
|
||||||
|
#define LLDdeleteString(l) LLDdeleteBlob(l)
|
||||||
|
|
||||||
#define LLDstringInsert(l,s) LLDblobInsert( l, s, strlen( s ) +1 )
|
#define LLDstringInsert(l,s) LLDblobInsert( l, s, strlen( s ) +1 )
|
||||||
|
|
||||||
#define LLDstringAdd(l,s) LLDblobAdd( l, s, strlen( s ) +1 )
|
#define LLDstringAdd(l,s) LLDblobAdd( l, s, strlen( s ) +1 )
|
||||||
|
Reference in New Issue
Block a user