From 7d46d4217fd6b4a536a52b4412535044ff671a7f Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 24 Oct 2022 12:59:49 +0200 Subject: [PATCH] unix-socket: avoid duplicate errors --- src/unix-manager.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/unix-manager.c b/src/unix-manager.c index 09488a2bbf..c10e772473 100644 --- a/src/unix-manager.c +++ b/src/unix-manager.c @@ -419,7 +419,6 @@ static int UnixCommandAccept(UnixCommand *this) uclient = UnixClientAlloc(); if (unlikely(uclient == NULL)) { - SCLogError(SC_ERR_MEM_ALLOC, "Can't allocate new client"); json_decref(server_msg); close(client); return 0;