gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: Zonemaster: Fixes missing initialization


From: gnunet
Subject: [gnunet] branch master updated: Zonemaster: Fixes missing initialization for mutextes causing issues.
Date: Tue, 09 May 2023 18:13:59 +0200

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 365b52573 Zonemaster: Fixes missing initialization for mutextes 
causing issues.
365b52573 is described below

commit 365b525733c719ed1e4385344c3a36b513da7051
Author: Martin Schanzenbach <schanzen@gnunet.org>
AuthorDate: Tue May 9 18:13:20 2023 +0200

    Zonemaster: Fixes missing initialization for mutextes causing issues.
---
 src/zonemaster/gnunet-service-zonemaster.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/zonemaster/gnunet-service-zonemaster.c 
b/src/zonemaster/gnunet-service-zonemaster.c
index 1893ccc03..a4eb13004 100644
--- a/src/zonemaster/gnunet-service-zonemaster.c
+++ b/src/zonemaster/gnunet-service-zonemaster.c
@@ -1321,6 +1321,9 @@ run (void *cls,
 
   (void) cls;
   (void) service;
+  pthread_mutex_init (&sign_jobs_lock, NULL);
+  pthread_mutex_init (&sign_results_lock, NULL);
+  pthread_cond_init (&sign_jobs_cond, NULL);
   last_put_100 = GNUNET_TIME_absolute_get ();  /* first time! */
   min_relative_record_time
     = GNUNET_TIME_UNIT_FOREVER_REL;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]