From b2c466cf3f674f24f7ca3646b39ea91016d7fc64 Mon Sep 17 00:00:00 2001 From: tsingbx Date: Tue, 12 Nov 2024 09:37:22 +0800 Subject: [PATCH] fix llcppsigfetch: invalid memory address or nil pointer dereference --- chore/_xtool/llcppsigfetch/llcppsigfetch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chore/_xtool/llcppsigfetch/llcppsigfetch.go b/chore/_xtool/llcppsigfetch/llcppsigfetch.go index e04de549..8614f653 100644 --- a/chore/_xtool/llcppsigfetch/llcppsigfetch.go +++ b/chore/_xtool/llcppsigfetch/llcppsigfetch.go @@ -204,7 +204,7 @@ func outputResult(result *c.Char, outputToFile bool) { } fmt.Fprintf(os.Stderr, "Results saved to %s\n", outputFile) } else { - c.Printf(result) + c.Printf(c.Str("%s"), result) } }