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

View File

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