]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
common: Add missing va_end (#11529)
authorSteve Grubb <redacted>
Fri, 31 Jan 2025 05:58:55 +0000 (00:58 -0500)
committerGitHub <redacted>
Fri, 31 Jan 2025 05:58:55 +0000 (07:58 +0200)
commit1bd3047a939e561adfb3c7dd2e17c4cc7a4e4e6f
treecb027ec59b397bfb5a1fd5c11df6acd36b0da923
parenta2df2787b32e0846205f7151dfad88ceab592beb
common: Add missing va_end (#11529)

The va_copy man page states that va_end must be called to revert
whatever the copy did. For some implementaions, not calling va_end
has no consequences. For others it could leak memory.
common/log.cpp