You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1.start asterisk
2.
3.
What is the expected output? What do you see instead?
asterisk[1063]: segfault at 0 ip 00007f117aee122d sp 00007fffbc398990 error 4
in libiksemel.so.3.1.1[7f117aed8000+d000]
What version of the product are you using? On what operating system?
iksemel-1.4-4.fc17.x86_64.rpm
Fedora 17
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 5 May 2013 at 2:05
The text was updated successfully, but these errors were encountered:
I ran into this problem too, for me if my username / password combo was bad I
experience this segfault.
The following patch fixes the failed login from causing asterisk to crash.
+++ src/filter.c 2013-12-06 13:15:48.000000000 -0800
@@ -45,7 +45,7 @@
iksrule *rule;
va_list ap;
int type;
+ if (!f) return NULL;
-
s = iks_stack_new (sizeof (iksrule), DEFAULT_RULE_CHUNK_SIZE);
if (!s) return NULL;
rule = iks_stack_alloc (s, sizeof (iksrule));
Original issue reported on code.google.com by
[email protected]
on 5 May 2013 at 2:05The text was updated successfully, but these errors were encountered: