Merge branch 'master' into session_lock
[pazpar2-moved-to-github.git] / src / session.c
index 16f6b40..544d0db 100644 (file)
@@ -2185,7 +2185,7 @@ void session_log(struct session *s, int level, const char *fmt, ...)
     va_start(ap, fmt);
 
     yaz_vsnprintf(buf, sizeof(buf)-30, fmt, ap);
-    yaz_log(level, "Session %u: %s", s->session_id, buf);
+    yaz_log(level, "Session %u: %s", s ? s->session_id : 0, buf);
 
     va_end(ap);
 }