Closed GoogleCodeExporter closed 9 years ago
Hi. I'm currently working on this issue. For now, I just add a
noload=app_unimrcp.so to modules.conf and then load the module after Asterisk
started. Not sure why this is happening yet...
Original comment by thirion...@gmail.com
on 25 Nov 2012 at 10:06
Original comment by thirion...@gmail.com
on 25 Nov 2012 at 10:08
Hi. I had the same problem.
Original comment by A.V.No...@gmail.com
on 4 Dec 2012 at 1:41
Below is a one-line change which fixes the problem. The problem was in the
Sofia-SIP library which deleted a data storage key which was not created. That
eventually made Asterisk crash because of memory corruption issues. The fix
will be available in the upcoming release of the dependencies.
diff --git a/libsofia-sip-ua/su/su_uniqueid.c b/libsofia-sip-ua/su/su_uniqueid.c
index 59833cc..eaa8813 100644
--- a/libsofia-sip-ua/su/su_uniqueid.c
+++ b/libsofia-sip-ua/su/su_uniqueid.c
@@ -99,7 +99,7 @@ union state {
#endif
static pthread_once_t once = PTHREAD_ONCE_INIT;
-static int done_once = 1;
+static int done_once = 0;
static pthread_key_t state_key;
Original comment by achalo...@gmail.com
on 6 Mar 2013 at 7:33
Original issue reported on code.google.com by
eugeny.b...@gmail.com
on 23 Nov 2012 at 11:27