Networking code should use kfree, not lib_free

This commit is contained in:
Gregory Nutt 2013-04-11 06:54:29 -06:00
parent c2b6828dd5
commit 71fb1cfdb1
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ int uip_backlogdestroy(FAR struct uip_conn *conn)
/* Then free the entire backlog structure */
lib_free(blg);
kfree(blg);
}
return OK;