From e9b29fb71df2096342b4560e56491212e6137b00 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sun, 7 Mar 2021 13:32:53 +0200 Subject: Multithreading issues It was possible that the window was accessed from a background request `postCommand` before the window was created. The CA file/path from preferences must be set before TlsRequest is used. --- src/ui/window.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ui/window.c') diff --git a/src/ui/window.c b/src/ui/window.c index 19290ee5..038d72af 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -1833,6 +1833,7 @@ uint32_t frameTime_Window(const iWindow *d) { } iWindow *get_Window(void) { + /* TODO: This should be thread-specific. */ return theWindow_; } -- cgit v1.2.3