From db5c66cad6f78c791e3576cfadb8b20eb6f98eb3 Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Sat, 26 Jul 2025 07:17:18 +0100 Subject: [PATCH] - ClientConnection: fixed bug in ownerCountMutex creation (LIB61850-517) --- src/iec61850/server/impl/client_connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iec61850/server/impl/client_connection.c b/src/iec61850/server/impl/client_connection.c index e8a6e2de..e4e824ec 100644 --- a/src/iec61850/server/impl/client_connection.c +++ b/src/iec61850/server/impl/client_connection.c @@ -82,7 +82,7 @@ private_ClientConnection_create(void* serverConnectionHandle) self->accessMutex = Semaphore_create(1); #ifdef _TLS_OWN_CNT_SEM - self->ownerCount = Semaphore_create(1); + self->ownerCountMutex = Semaphore_create(1); #endif #endif