Browse Source

ims_dialog: fixed check for null of via branch value in condition

Daniel-Constantin Mierla 9 years ago
parent
commit
f2848074fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/ims_dialog/dlg_handlers.c

+ 1 - 1
modules/ims_dialog/dlg_handlers.c

@@ -1342,7 +1342,7 @@ void dlg_onreply(struct cell* t, int type, struct tmcb_params *param) {
 
         if (!dlg_out) {
             if (rpl->first_line.u.reply.statuscode < 299) { /*we don't care about failure responses to dialog - not necessary to create dialog out...*/
-                if (rpl->via1->branch && (&rpl->via1->branch->value) && (rpl->via1->branch->value.len > 0)) {
+                if (rpl->via1->branch && (rpl->via1->branch->value.s) && (rpl->via1->branch->value.len > 0)) {
                     branch = rpl->via1->branch->value;
                 }