forked from espressif/esp-idf
BLE Provisioning: Remove unnecessary strdup/free from protocomm_nimble
Closes IDFGH-4980
This commit is contained in:
@@ -284,15 +284,9 @@ gatt_svr_dsc_access(uint16_t conn_handle, uint16_t attr_handle, struct
|
|||||||
}
|
}
|
||||||
|
|
||||||
int rc;
|
int rc;
|
||||||
char *temp_outbuf = strdup(ctxt->dsc->arg);
|
ssize_t temp_outlen = strlen(ctxt->dsc->arg);
|
||||||
if (temp_outbuf == NULL) {
|
|
||||||
ESP_LOGE(TAG, "Error duplicating user description of characteristic");
|
|
||||||
return BLE_ATT_ERR_INSUFFICIENT_RES;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssize_t temp_outlen = strlen(temp_outbuf);
|
rc = os_mbuf_append(ctxt->om, ctxt->dsc->arg, temp_outlen);
|
||||||
rc = os_mbuf_append(ctxt->om, temp_outbuf, temp_outlen);
|
|
||||||
free(temp_outbuf);
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user