1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Merge pull request #1484 from kaffeekanne/calm-openbsd-syslog

Calm OpenBSD syslog
This commit is contained in:
Michael Vetter 2021-02-15 17:13:03 +01:00 committed by GitHub
commit b170fcb55f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -334,14 +334,14 @@ _add_to_db(ProfMessage* message, char* type, const Jid* const from_jid, const Ji
from_jid->resourcepart ? from_jid->resourcepart : "",
to_jid->barejid,
to_jid->resourcepart ? to_jid->resourcepart : "",
escaped_message,
date_fmt,
escaped_message ? escaped_message : "",
date_fmt ? date_fmt : "",
message->id ? message->id : "",
message->stanzaid ? message->stanzaid : "",
message->replace_id ? message->replace_id : "",
type,
enc,
message->stanzaid)
type ? type : "",
enc ? enc : "",
message->stanzaid ? message->stanzaid : "")
== -1) {
log_error("log_database_add(): SQL query. could not allocate memory");
return;