fix: nullptr initialization

This commit is contained in:
2026-06-19 03:40:06 -03:00
parent a4b1e00eb8
commit 18bc9100c2
3 changed files with 9 additions and 6 deletions
+3 -3
View File
@@ -18,9 +18,9 @@
#define CREATE_NO_WINDOW 0x08000000
bool running = true;
TinyMITMProxy* proxy;
ProxyConfigurator* conf;
CacheCleaner* cleaner ;
TinyMITMProxy* proxy = nullptr;
ProxyConfigurator* conf = nullptr;
CacheCleaner* cleaner = nullptr;
BOOL WINAPI consoleHandler(DWORD dwType)
{