component/bt: Change the queue_data->p_attr->p_value->attr_val.attr_len += queue_data->len code to the if case.

pull/1209/head
Yulong 2017-10-16 03:42:49 -04:00
rodzic 7617a3c434
commit 4b1968f315
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -421,9 +421,9 @@ void gatt_process_exec_write_req (tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, U
if (is_prepare_write_valid){
if((queue_data->p_attr->p_value != NULL) && (queue_data->p_attr->p_value->attr_val.attr_val != NULL)){
memcpy(queue_data->p_attr->p_value->attr_val.attr_val+queue_data->offset, queue_data->value, queue_data->len);
//don't forget to increase the attribute value length in the gatts database.
queue_data->p_attr->p_value->attr_val.attr_len += queue_data->len;
}
//don't forget to increase the attribute value length in the gatts database.
queue_data->p_attr->p_value->attr_val.attr_len += queue_data->len;
}
osi_free(queue_data);
}