mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2025-08-17 17:05:50 +00:00
Don't call a null pointer if a logging function is called before LiStartConnection()
This commit is contained in:
parent
9396f6c528
commit
cd6b636dca
@ -36,7 +36,8 @@
|
||||
#include "Limelight.h"
|
||||
|
||||
#define Limelog(s, ...) \
|
||||
ListenerCallbacks.logMessage(s, ##__VA_ARGS__)
|
||||
if (ListenerCallbacks.logMessage) \
|
||||
ListenerCallbacks.logMessage(s, ##__VA_ARGS__)
|
||||
|
||||
#if defined(LC_WINDOWS)
|
||||
#include <crtdbg.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user