MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / FreeList

Function FreeList

dbug/dbug.c:1981–1991  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1979 */
1980
1981static void FreeList(struct link *linkp)
1982{
1983 REGISTER struct link *old;
1984
1985 while (linkp != NULL)
1986 {
1987 old= linkp;
1988 linkp= linkp->next_link;
1989 free((void*) old);
1990 }
1991}
1992
1993
1994/*

Callers 2

DbugParseFunction · 0.85
FreeStateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected