Skip to content

Commit 166afb2

Browse files
authored
Merge pull request #2029 from l2dy/b2b_logic
b2b_logic: fix checking potentially uninitialized pointer
2 parents da3e78a + fefd321 commit 166afb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/b2b_logic/logic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3927,7 +3927,7 @@ int b2bl_bridge_2calls(str* key1, str* key2)
39273927
b2bl_tuple_t* tuple;
39283928
unsigned int hash_index, local_index;
39293929
b2bl_entity_id_t *e2= 0, *e1= 0;
3930-
b2bl_entity_id_t *e;
3930+
b2bl_entity_id_t *e= 0;
39313931
b2b_req_data_t req_data;
39323932
b2b_rpl_data_t rpl_data;
39333933

0 commit comments

Comments
 (0)