[or-cvs] [tor/master 5/5] Only add each log message to pending_cb_messages once.

nickm at torproject.org nickm at torproject.org
Tue Dec 21 20:46:25 UTC 2010


Author: Robert Ransom <rransom.8774 at gmail.com>
Date: Sat, 11 Dec 2010 05:26:36 -0800
Subject: Only add each log message to pending_cb_messages once.
Commit: cc051f9aca96b55533953cfcc10c86f9fe1e7b9a

---
 src/common/log.c |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/common/log.c b/src/common/log.c
index f63c3fb..1324ff0 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -272,6 +272,7 @@ logv(int severity, log_domain_mask_t domain, const char *funcname,
   int formatted = 0;
   logfile_t *lf;
   char *end_of_prefix=NULL;
+  int callbacks_deferred = 0;
 
   /* Call assert, not tor_assert, since tor_assert calls log on failure. */
   assert(format);
@@ -328,11 +329,15 @@ logv(int severity, log_domain_mask_t domain, const char *funcname,
       continue;
     } else if (lf->callback) {
       if (domain & LD_NOCB) {
-        pending_cb_message_t *msg = tor_malloc(sizeof(pending_cb_message_t));
-        msg->severity = severity;
-        msg->domain = domain;
-        msg->msg = tor_strdup(end_of_prefix);
-        smartlist_add(pending_cb_messages, msg);
+        if (!callbacks_deferred) {
+          pending_cb_message_t *msg = tor_malloc(sizeof(pending_cb_message_t));
+          msg->severity = severity;
+          msg->domain = domain;
+          msg->msg = tor_strdup(end_of_prefix);
+          smartlist_add(pending_cb_messages, msg);
+
+          callbacks_deferred = 1;
+        }
       } else {
         lf->callback(severity, domain, end_of_prefix);
       }
-- 
1.7.1



More information about the tor-commits mailing list