sccp: Drop unused local variable

Change-Id: I7f829f1c285d01faeaad317262ddd51f39e42886
This commit is contained in:
Pau Espin 2023-10-03 14:02:11 +02:00 committed by pespin
parent f8aaa75852
commit 613e25305b
1 changed files with 0 additions and 3 deletions

View File

@ -840,7 +840,6 @@ struct msgb *sccp_create_cr(const struct sccp_source_reference *src_ref,
struct msgb *request;
struct sccp_connection_request *req;
uint8_t *data;
uint8_t extra_size = 3 + 1;
int called_len;
if (l3_data) {
@ -850,8 +849,6 @@ struct msgb *sccp_create_cr(const struct sccp_source_reference *src_ref,
}
}
if (l3_data)
extra_size += 2 + l3_length;
request = msgb_alloc_headroom(SCCP_MSG_SIZE,
SCCP_MSG_HEADROOM, "sccp connection request");
request->l2h = &request->data[0];