diff options
| author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-21 20:36:17 +0100 |
|---|---|---|
| committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-21 20:45:32 +0100 |
| commit | 4c34f4bfee284f0065f4b72c5a12649d664acf43 (patch) | |
| tree | 322c667998d191a68d4272135849afc9180bf56c /src/Logging.cpp | |
| parent | Translated using Weblate (Russian) (diff) | |
| download | nheko-4c34f4bfee284f0065f4b72c5a12649d664acf43.tar.xz | |
Work around multiple destructor calls after consteval construction in full expression
I have no idea, if this is our fault or not, but Jason traced it back to
the consteval on the {fmt} format string constructor.
Specifically when a consteval constructor call happens in the statement,
the destructor call is moved to the end of the block. Inside the switch
statement that means, the destructor is called multiple times, which
corrupts the use count and crashes Nheko because of a double free.
I am assuming this is a bug in clang, but this will need to be
investigated more.
fixes #1292
Diffstat (limited to 'src/Logging.cpp')
| -rw-r--r-- | src/Logging.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Logging.cpp b/src/Logging.cpp |
