From 04a04e162886ca9bc3977d3a7509def876487921 Mon Sep 17 00:00:00 2001 From: Mikhail Gusarov Date: Mon, 25 Oct 2010 01:27:46 +0400 Subject: [PATCH] Remove now-misleading comment Signed-off-by: Mikhail Gusarov Reviewed-by: Alan Coopersmith --- os/log.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/os/log.c b/os/log.c index ee4b45fa4..3435da6f0 100644 --- a/os/log.c +++ b/os/log.c @@ -302,10 +302,6 @@ LogVWrite(int verb, const char *f, va_list args) #endif } } else if (needBuffer) { - /* - * Note, this code is used before OsInit() has been called, so - * malloc() and friends can't be used. - */ if (len > bufferUnused) { bufferSize += 1024; bufferUnused += 1024;