Block a user
fix(cmd): ensure cmd_time stops iterating after matching option
fix(cmd): ensure cmd_time stops iterating after matching option
Please remove external/stabber addition as an out of scope change
feat(xmpp): add comprehensive connection debug logging
[#49] harden NULL handling and resource lifecycle across UI and SQLite
Maybe we should add error logging for gracefulness?
[#49] harden NULL handling and resource lifecycle across UI and SQLite
Is it realistic condition? It doesn't appear a normal state, so maybe we should log_warn it?
[#49] harden NULL handling and resource lifecycle across UI and SQLite
Earlier it was conditional. Could it cause an issue to have unconditional sqlite3_shutdown?
[#49] harden NULL handling and resource lifecycle across UI and SQLite
Wouldn't this cause a faulty logic on iq_mam_request_older?
src/xmpp/iq.c
Lines 2654 to 2660 in 74cfd32c1e
// If first message found |
|
if (first_msg->timestamp) { |
|
firstid = first_msg->stanzaid; |
|
enddate = g_date_time_format(first_msg->timestamp, mam_timestamp_format_string); |
|
} else { |
|
return; |
|
} |
[#49] harden NULL handling and resource lifecycle across UI and SQLite
Analogous to the previous comment.
Minor optimizations and improvements