From 8d9dfa8d2c4e0f5e38ac3a1bacc27b7e972d5928 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Tue, 4 Nov 2003 22:41:59 +0000 Subject: unneeded now that i've teached dietlibc to not segfault on NULL pointers --- mdk-stage1/log.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'mdk-stage1') diff --git a/mdk-stage1/log.c b/mdk-stage1/log.c index a4b97c988..e41653305 100644 --- a/mdk-stage1/log.c +++ b/mdk-stage1/log.c @@ -60,8 +60,6 @@ void vlog_message(const char * s, va_list args) void log_message(const char * s, ...) { va_list args; - if (!s) - return; va_start(args, s); vlog_message(s, args); va_end(args); -- cgit v1.2.1