Commit d14d5838 authored by Mario Trangoni's avatar Mario Trangoni

Fix clang error: comparison of array authCookie not equal to a null pointer is always true

parent e1ad1d47
......@@ -3573,7 +3573,7 @@ int SetupAuthInstance()
if (control -> ProxyMode == proxy_server)
{
if (authCookie != NULL && *authCookie != '\0')
if (*authCookie != '\0')
{
if (useLaunchdSocket == 1)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment