summaryrefslogtreecommitdiffstats
path: root/bta
diff options
context:
space:
mode:
authorzzy <zhenye@broadcom.com>2012-04-16 15:12:44 -0700
committerMatthew Xie <mattx@google.com>2012-07-14 11:19:17 -0700
commit939342d7dc180797ea0b27d6fd7a30216189c5c4 (patch)
tree18b12dbeb78648f7e2696092657e990789532eb0 /bta
parent7eac5bc41ced174c18783dc2da0c934be0b3a1b7 (diff)
downloadexternal_bluetooth_bluedroid-939342d7dc180797ea0b27d6fd7a30216189c5c4.zip
external_bluetooth_bluedroid-939342d7dc180797ea0b27d6fd7a30216189c5c4.tar.gz
external_bluetooth_bluedroid-939342d7dc180797ea0b27d6fd7a30216189c5c4.tar.bz2
fixed the address issue
Diffstat (limited to 'bta')
-rw-r--r--bta/jv/bta_jv_act.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bta/jv/bta_jv_act.c b/bta/jv/bta_jv_act.c
index 60729e3..83a9a05 100644
--- a/bta/jv/bta_jv_act.c
+++ b/bta/jv/bta_jv_act.c
@@ -2020,7 +2020,7 @@ static void bta_jv_port_mgmt_sr_cback(UINT32 code, UINT16 port_handle)
{
evt_data.rfc_srv_open.handle = p_pcb->handle;
evt_data.rfc_srv_open.status = BTA_JV_SUCCESS;
- bdcpy(evt_data.rfc_open.rem_bda, rem_bda);
+ bdcpy(evt_data.rfc_srv_open.rem_bda, rem_bda);
p_pcb->state = BTA_JV_ST_SR_OPEN;
tBTA_JV_PCB *p_pcb_new_listen = bta_jv_add_rfc_port(p_cb);
if(p_pcb_new_listen)