Skip to content

Commit

Permalink
dialog: Fix potential copy-paste error
Browse files Browse the repository at this point in the history
CID #417795

(cherry picked from commit bd0989c)
  • Loading branch information
oanatitoc authored and razvancrainea committed Oct 1, 2024
1 parent 1bd8d14 commit c089ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dialog/dlg_db_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ static int sync_dlg_db_mem(void)

if (!VAL_NULL(values+10)) {
cseq2.s = VAL_STR(values+10).s;
cseq2.len = strlen(cseq1.s);
cseq2.len = strlen(cseq2.s);
callee_leg_idx = callee_idx(known_dlg);

if (known_dlg->legs[callee_leg_idx].r_cseq.len < cseq2.len) {
Expand Down

0 comments on commit c089ead

Please sign in to comment.