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
static janus_log_buffer *janus_log_getbuf(void) {
/*** some code ***/
if (b == NULL) {
b = g_malloc(INITIAL_BUFSZ + sizeof(*b));
// we are suspecting before b->allocated set to INITIAL_BUFSZ, b set to NULL by other thread.
b->allocated = INITIAL_BUFSZ;
b->next = NULL;
}
return b;
}
What version of Janus is this happening on?
Latest
Have you tested a more recent version of Janus too?
Yes
Was this working before?
This is the first time I am facing this crash for the past 2 years.
Is there a gdb or libasan trace of the issue?
https://pastebin.com/BWjE7SMv
Additional context
@lminiero @ramprakash110109
The text was updated successfully, but these errors were encountered: