diff --git a/sflphone-client-gnome/src/contacts/addressbook.c b/sflphone-client-gnome/src/contacts/addressbook.c
index b37b1e48d53be8ec308def7d124f52ea77dba79b..8b2b5298094e927d767e9bb5124ba36826d9d04d 100644
--- a/sflphone-client-gnome/src/contacts/addressbook.c
+++ b/sflphone-client-gnome/src/contacts/addressbook.c
@@ -121,8 +121,6 @@ addressbook_config_books()
         g_strfreev (list);
     }
 
-    // Update buttons
-    // update_actions ();
 }
 
 /**
diff --git a/sflphone-common/src/audio/audiortp/AudioRtpSession.cpp b/sflphone-common/src/audio/audiortp/AudioRtpSession.cpp
index 29295ad4c4c829812f8f83a177a27305b25a6334..3c8bbf188038a046aa9f49812955a83e7724fc93 100644
--- a/sflphone-common/src/audio/audiortp/AudioRtpSession.cpp
+++ b/sflphone-common/src/audio/audiortp/AudioRtpSession.cpp
@@ -320,9 +320,6 @@ int AudioRtpSession::startRtpThread (AudioCodec* audiocodec)
 void AudioRtpSession::run ()
 {
 
-    // Timestamp must be initialized randomly, already done when instantiating outgoing queue
-    _timestamp = getCurrentTimestamp();
-
     /**
     int threadSleep = 0;
 
@@ -344,6 +341,9 @@ void AudioRtpSession::run ()
 
     _debug ("AudioRtpSession: Entering mainloop for call %s",_ca->getCallId().c_str());
 
+    // Timestamp must be initialized randomly, already done when instantiating outgoing queue
+    _timestamp = getCurrentTimestamp();
+
     uint32 timeout = 0;
 
     while (isActive()) {