[svn-commits] marquis: branch group/pinana-publish-1.4 r297593 - /team/group/pinana-publish...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Dec 5 17:36:57 CST 2010


Author: marquis
Date: Sun Dec  5 17:36:51 2010
New Revision: 297593

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=297593
Log:
Get rid of compiler warning, and add comment that tells why this function is empty.

Modified:
    team/group/pinana-publish-1.4/channels/chan_sip.c

Modified: team/group/pinana-publish-1.4/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/group/pinana-publish-1.4/channels/chan_sip.c?view=diff&rev=297593&r1=297592&r2=297593
==============================================================================
--- team/group/pinana-publish-1.4/channels/chan_sip.c (original)
+++ team/group/pinana-publish-1.4/channels/chan_sip.c Sun Dec  5 17:36:51 2010
@@ -9999,11 +9999,11 @@
 
 static void dlginfo_epa_destructor(void *data)
 {
-	/* PINANA XXX needs fixing???? */
-        struct sip_epa_entry *epa_entry = data;
-	ast_log(LOG_DEBUG, "*** Destroying EPA entry \n");
-        //struct dlginfo_epa_entry *dlginfo_entry = epa_entry->instance_data;
-        //ast_free(dlginfo_entry);
+	/*
+	 * Do nothing here.  Only the instance_data needs to be taken care of, but it's already an ao2 object
+	 * and will freed elsewhere.
+	 */
+	return;
 }
 
 




More information about the svn-commits mailing list