diff options
author | Marvin Borner | 2021-02-26 18:40:37 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-26 18:40:37 +0100 |
commit | 5cd84ad93f7d67cdaa134707fcce1b1ef85183ad (patch) | |
tree | 777ccbcf3034f96a013c402cf05ad23c35b4de0e /libc/print.c | |
parent | 0f00932955521c3c2fb8140176ab72f22172c298 (diff) |
Full UBSan support - many fixes!
Diffstat (limited to 'libc/print.c')
-rw-r--r-- | libc/print.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/libc/print.c b/libc/print.c index 3f6c1cd..ef51e1f 100644 --- a/libc/print.c +++ b/libc/print.c @@ -3,6 +3,7 @@ #include <arg.h> #include <assert.h> #include <conv.h> +#include <cpu.h> #include <def.h> #include <mem.h> #include <serial.h> @@ -217,14 +218,17 @@ int print(const char *str) void panic(const char *format, ...) { + char buf[1024] = { 0 }; va_list ap; va_start(ap, format); + vsprintf(buf, format, ap); + va_end(ap); #ifdef kernel - vprintf(format, ap); + print(buf); + loop(); #else - vfprintf(PATH_ERR, format, ap); + err(1, buf); #endif - va_end(ap); - - assert(0); + while (1) + ; } |