From afefdcd042cf5fedf6fceaca495116296fc9ac6e Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 19 Mar 2007 14:23:58 +0000 Subject: [PATCH] Should call free(), not sched_free() in this context git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@91 42af7a65-404d-4744-a932-0658087f49c3 --- sched/os_start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/os_start.c b/sched/os_start.c index 935eef66d7..f360a19914 100644 --- a/sched/os_start.c +++ b/sched/os_start.c @@ -442,7 +442,7 @@ void os_start(void) if (address) { - sched_free(address); + free(address); } } mm_givesemaphore();